Skip to content

Commit 8502df4

Browse files
committed
Use upstream instead of local version of z3 4.15.3
1 parent 0c25172 commit 8502df4

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

nix/cbmc/default.nix

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,19 @@ buildEnv {
2929
});
3030
litani = callPackage ./litani.nix { }; # 1.29.0
3131
cbmc-viewer = callPackage ./cbmc-viewer.nix { }; # 3.11
32+
z3 = z3.overrideAttrs (old: rec {
33+
version = "4.15.3";
34+
src = fetchFromGitHub {
35+
owner = "Z3Prover";
36+
repo = "z3";
37+
rev = "z3-4.15.3";
38+
hash = "sha256-Lw037Z0t0ySxkgMXkbjNW5CB4QQLRrrSEBsLJqiomZ4=";
39+
};
40+
});
3241

3342
inherit
34-
cadical # 2.1.3
35-
bitwuzla # 0.8.2
36-
ninja # 1.12.1
37-
z3; # 4.15.3
43+
cadical#2.1.3
44+
bitwuzla# 0.8.2
45+
ninja; # 1.12.1
3846
};
3947
}

0 commit comments

Comments
 (0)