We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93cba59 + a44dfab commit 22078e2Copy full SHA for 22078e2
pkgs/by-name/lc/lcov/package.nix
@@ -30,16 +30,22 @@ stdenv.mkDerivation rec {
30
hash = "sha256-Qz5Q1JRJeB0aCaYmCR8jeG7TQPkvJHtJTkBhXGM05ak=";
31
};
32
33
- nativeBuildInputs = [ makeWrapper ];
+ nativeBuildInputs = [
34
+ makeWrapper
35
+ perl
36
+ ];
37
38
buildInputs = [
39
perl
40
python3
41
];
42
43
+ strictDeps = true;
44
+
45
preBuild = ''
- patchShebangs bin/
- makeFlagsArray=(PREFIX=$out LCOV_PERL_PATH=$(command -v perl))
46
+ patchShebangs --build bin/{fix.pl,get_version.sh} tests/*/*
47
+ patchShebangs --host bin/{gen*,lcov,perl2lcov}
48
+ makeFlagsArray=(PREFIX=$out LCOV_PERL_PATH=${lib.getExe perl})
49
'';
50
51
postInstall = ''
0 commit comments