patchutils: add perl to buildInputs
This was silently producing perl scripts with empty shebang lines, breaking a bunch of the binaries.
This commit is contained in:
parent
4727a40be9
commit
cbbe9f0f21
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl, perl
|
||||||
, version, sha256, patches ? []
|
, version, sha256, patches ? []
|
||||||
, ...
|
, ...
|
||||||
}:
|
}:
|
||||||
@ -11,6 +11,7 @@ stdenv.mkDerivation rec {
|
|||||||
inherit sha256;
|
inherit sha256;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ perl ];
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
doCheck = false; # fails
|
doCheck = false; # fails
|
||||||
|
Loading…
x
Reference in New Issue
Block a user