why3.withProvers: add dontUnpack

This commit is contained in:
Felix Buehler
2021-12-12 20:33:14 +01:00
committed by Vincent Laporte
parent 277954f584
commit 4cc23f2b1e
@@ -17,9 +17,11 @@ stdenv.mkDerivation {
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ why3 ] ++ provers;
dontUnpack = true;
buildPhase = ''
mkdir -p $out/share/why3/
why3 config --detect-provers -C $out/share/why3/why3.conf
why3 config detect -C $out/share/why3/why3.conf
awk -i inplace -f ${configAwkScript} $out/share/why3/why3.conf
'';