flamegraph: fix and enable strictDeps (#366615)

This commit is contained in:
Arne Keller
2024-12-20 05:43:05 -05:00
committed by GitHub
parent 63ebd12652
commit ec10f50f7c
+9 -1
View File
@@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
buildInputs = [ perl ];
strictDeps = true;
installPhase = ''
runHook preInstall
@@ -31,9 +33,15 @@ stdenv.mkDerivation rec {
doCheck = true;
nativeCheckInputs = [
perl
];
checkPhase = ''
patchShebangs ./test.sh
runHook preCheck
patchShebangs --build ./test.sh
./test.sh
runHook postCheck
'';
meta = with lib; {