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.
1 parent 63ebd12 commit ec10f50Copy full SHA for ec10f50
pkgs/by-name/fl/flamegraph/package.nix
@@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
18
19
buildInputs = [ perl ];
20
21
+ strictDeps = true;
22
+
23
installPhase = ''
24
runHook preInstall
25
@@ -31,9 +33,15 @@ stdenv.mkDerivation rec {
31
33
32
34
doCheck = true;
35
36
+ nativeCheckInputs = [
37
+ perl
38
+ ];
39
40
checkPhase = ''
- patchShebangs ./test.sh
41
+ runHook preCheck
42
+ patchShebangs --build ./test.sh
43
./test.sh
44
+ runHook postCheck
45
'';
46
47
meta = with lib; {
0 commit comments