about summary refs log tree commit diff
path: root/pkgs/applications/science/logic/cvc5
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-08-16 21:33:07 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2023-08-16 21:33:07 +0200
commitae68d70536dad1a96d6ce94092f50354694b453b (patch)
tree6c67913c679b1f7c3d36c452791d96d114cef519 /pkgs/applications/science/logic/cvc5
parent43dd990c78528870561394b9c9e1fbd74e149807 (diff)
cvc5: 1.0.5 → 1.0.6
Diffstat (limited to 'pkgs/applications/science/logic/cvc5')
-rw-r--r--pkgs/applications/science/logic/cvc5/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/science/logic/cvc5/default.nix b/pkgs/applications/science/logic/cvc5/default.nix
index 23310163f279e..5357e1df54542 100644
--- a/pkgs/applications/science/logic/cvc5/default.nix
+++ b/pkgs/applications/science/logic/cvc5/default.nix
@@ -2,19 +2,19 @@
 
 stdenv.mkDerivation rec {
   pname = "cvc5";
-  version = "1.0.5";
+  version = "1.0.6";
 
   src = fetchFromGitHub {
     owner  = "cvc5";
     repo   = "cvc5";
     rev    = "cvc5-${version}";
-    hash  = "sha256-l+L59QLLrAEVkAZjhxICJpa+j+jr1k/7B61JlapXGRI=";
+    hash  = "sha256-pZiXAO92cwnYtaVMDFBEmk+NzDf4eKdc0eY0RltofPA=";
   };
 
   nativeBuildInputs = [ pkg-config cmake flex ];
   buildInputs = [
     cadical.dev symfpu gmp gtest libantlr3c antlr3_4 boost jdk
-    (python3.withPackages (ps: with ps; [ pyparsing toml ]))
+    (python3.withPackages (ps: with ps; [ pyparsing tomli ]))
   ];
 
   preConfigure = ''