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:
edef 2019-08-31 15:56:10 +00:00
parent 4727a40be9
commit cbbe9f0f21

View File

@ -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