3
0
Fork 0
forked from mirrors/nixpkgs

byobu: add gettext to nativeBuildInputs

also remove not needed buildInputs, add strictdeps
This commit is contained in:
TuxCoder 2023-06-16 11:47:10 +02:00
parent 443629518c
commit fa8117a0a6

View file

@ -16,8 +16,9 @@ stdenv.mkDerivation rec {
doCheck = true;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ perl gettext ];
strictdeps = true;
nativeBuildInputs = [ makeWrapper gettext ];
buildInputs = [ perl ]; # perl is needed for `lib/byobu/include/*` scripts
propagatedBuildInputs = [ textual-window-manager screen ];
postPatch = ''