Skip to content

Commit e1b248b

Browse files
committed
wip
Signed-off-by: Hanno Becker <beckphan@amazon.co.uk>
1 parent b0d176e commit e1b248b

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

flake.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
let
2424
pkgs-unstable = inputs.nixpkgs-unstable.legacyPackages.${system};
2525
util = pkgs.callPackage ./nix/util.nix {
26-
inherit (pkgs) bitwuzla cvc5 z3;
27-
inherit (pkgs-unstable) cbmc;
26+
inherit (pkgs) bitwuzla z3;
27+
inherit (pkgs-unstable) cbmc cvc5;
2828
# TODO: switch back to stable python3 for slothy once ortools is fixed in 25.11
2929
python3-for-slothy = pkgs-unstable.python3;
3030
};
@@ -232,8 +232,8 @@
232232
pkgs-unstable = inputs.nixpkgs-unstable.legacyPackages.x86_64-linux;
233233
util = pkgs.callPackage ./nix/util.nix {
234234
inherit pkgs;
235-
inherit (pkgs) bitwuzla cvc5 z3;
236-
inherit (pkgs-unstable) cbmc;
235+
inherit (pkgs) bitwuzla z3;
236+
inherit (pkgs-unstable) cbmc cvc5;
237237
# TODO: switch back to stable python3 for slothy once ortools is fixed in 25.11
238238
python3-for-slothy = pkgs-unstable.python3;
239239
};

nix/cbmc/default.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,9 @@ buildEnv {
3535
hash = "sha256-Lw037Z0t0ySxkgMXkbjNW5CB4QQLRrrSEBsLJqiomZ4=";
3636
};
3737
});
38-
3938
inherit
4039
bitwuzla# 0.8.2
41-
cvc5# 1.3.2
40+
cvc5 # 1.3.3 (taken from nixpkgs-unstable -- see flake.nix)
4241
ninja; # 1.13.2
4342
};
4443
}

0 commit comments

Comments
 (0)