We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0bc2ede + 96bcb2a commit 3b2f365Copy full SHA for 3b2f365
.nix/z3.nix
@@ -1,8 +1,9 @@
1
-{ pkgs, stdenv, callPackage }:
+{ stdenv, callPackage, z3, python310 }:
2
3
let
4
- z3_4_8_5 = callPackage (import ./z3_4_8_5.nix) {};
5
- z3_4_13_3 = callPackage (import ./z3_4_13_3.nix) {};
+ z3_python310 = z3.override { python = python310; };
+ z3_4_8_5 = callPackage (import ./z3_4_8_5.nix) { z3 = z3_python310; };
6
+ z3_4_13_3 = callPackage (import ./z3_4_13_3.nix) { z3 = z3_python310; };
7
in
8
stdenv.mkDerivation {
9
pname = "fstar-z3";
0 commit comments