coqPackages.Verdi: preemptive fix for removal of configure in future versions

This commit is contained in:
Théo Zimmermann 2022-12-24 17:19:51 +01:00
parent 365f7f342f
commit d76cdd7b8b
No known key found for this signature in database
GPG key ID: F1744A0942F536C7

View file

@ -21,5 +21,9 @@ with lib; mkCoqDerivation {
release."20181102".sha256 = "1vw47c37k5vaa8vbr6ryqy8riagngwcrfmb3rai37yi9xhdqg55z";
propagatedBuildInputs = [ Cheerios InfSeqExt ssreflect ];
preConfigure = "patchShebangs ./configure";
preConfigure = ''
if [ -f ./configure ]; then
patchShebangs ./configure
fi
'';
}