Skip to content

Commit ae9418d

Browse files
committed
WIP: test commit for merge
1 parent 7d32b60 commit ae9418d

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

flake.nix

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@
111111
extraEmacsPackages = epkgs: [ epkgs.proof-general ];
112112
})
113113
bashInteractive
114-
114+
git
115+
difftastic
115116
])
116117
++
117118
pkgs.lib.optionals (!pkgs.stdenv.isDarwin) [ pkgs.pperf-tools ]
@@ -127,7 +128,12 @@
127128

128129
provers = pkgs.symlinkJoin {
129130
name = "provers";
130-
paths = [ altErgo z3 cvc4 cvc5 ];
131+
paths = [
132+
# altErgo
133+
z3
134+
# cvc4
135+
cvc5
136+
];
131137
};
132138

133139
with_provers = pkgs.symlinkJoin {
@@ -151,7 +157,6 @@
151157
buildInputs =
152158
devPackages
153159
++ devTools
154-
++ (with pkgs; [ git difftastic ])
155160
++ [ scope'.why3 ]
156161
++ (with pkgs.python3Packages; [ pyyaml ]);
157162
SHELL = ''${pkgs.bashInteractive + "/bin/bash"}'';
@@ -166,7 +171,6 @@
166171
buildInputs =
167172
devPackages
168173
++ devTools
169-
++ (with pkgs; [ git ])
170174
++ [ scope'.why3 packages.provers ]
171175
++ (with pkgs.python3Packages; [ pyyaml ]);
172176
SHELL = ''${pkgs.bashInteractive + "/bin/bash"}'';

src/ecScope.ml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2479,7 +2479,8 @@ module Circuit = struct
24792479
|> List.map (fun name -> (name, (Some (loced (Ptry (loced (Pby None)))), `Alias, false)))
24802480
|> Msym.of_list;
24812481
ev_global =
2482-
[ (None, None)
2482+
(* FIXME PR: get this to work *)
2483+
[ (Some (loced (Pby None)), Some [`Include, "bydone"])
24832484
; (None, None) ]; } } in
24842485

24852486
let npath = EcPath.pqname (EcEnv.root env) clone.name in

0 commit comments

Comments
 (0)