about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-12-07 22:08:49 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-12-12 20:33:14 +0100
commit4cc23f2b1e1b9ae443d257129001caebca464d2f (patch)
treefe528f6e9219d765cc8d0ea9f3331ac2f119f0e2 /pkgs/applications
parent277954f584e4e880be90cce43a8e49b0ca974fea (diff)
why3.withProvers: add dontUnpack
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/science/logic/why3/with-provers.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/science/logic/why3/with-provers.nix b/pkgs/applications/science/logic/why3/with-provers.nix
index fc08f5d7c85e4..826473b38e9f6 100644
--- a/pkgs/applications/science/logic/why3/with-provers.nix
+++ b/pkgs/applications/science/logic/why3/with-provers.nix
@@ -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
   '';