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 ? []
|
||||
, ...
|
||||
}:
|
||||
@ -11,6 +11,7 @@ stdenv.mkDerivation rec {
|
||||
inherit sha256;
|
||||
};
|
||||
|
||||
buildInputs = [ perl ];
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
doCheck = false; # fails
|
||||
|
Loading…
Reference in New Issue
Block a user