quilt: enable strictDeps (#359085)

This commit is contained in:
Aleksana
2024-12-01 18:54:44 +08:00
committed by GitHub
+8
View File
@@ -42,6 +42,14 @@ stdenv.mkDerivation rec {
unixtools.getopt
];
strictDeps = true;
configureFlags = [
# configure only looks in $PATH by default,
# which does not include buildInputs if strictDeps is true
"--with-perl=${lib.getExe perl}"
];
postInstall = ''
wrapProgram $out/bin/quilt --prefix PATH : ${lib.makeBinPath buildInputs}
'';