Skip to content

Commit ec10f50

Browse files
flamegraph: fix and enable strictDeps (#366615)
1 parent 63ebd12 commit ec10f50

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

pkgs/by-name/fl/flamegraph/package.nix

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
1818

1919
buildInputs = [ perl ];
2020

21+
strictDeps = true;
22+
2123
installPhase = ''
2224
runHook preInstall
2325
@@ -31,9 +33,15 @@ stdenv.mkDerivation rec {
3133

3234
doCheck = true;
3335

36+
nativeCheckInputs = [
37+
perl
38+
];
39+
3440
checkPhase = ''
35-
patchShebangs ./test.sh
41+
runHook preCheck
42+
patchShebangs --build ./test.sh
3643
./test.sh
44+
runHook postCheck
3745
'';
3846

3947
meta = with lib; {

0 commit comments

Comments
 (0)