Skip to content

Commit e4b8919

Browse files
committed
WIP neural net
1 parent 9aafdf4 commit e4b8919

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.nix/config.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ with builtins; with (import <nixpkgs> {}).lib;
143143
# "simple-io" -> overlay
144144
# "QuickChick" -> overlay
145145
"menhir"
146-
# TODO neural_net_interp
146+
# "neural-net-coq-interp" -> overlay
147147
# "aac-tactics" -> overlay
148148
"paco"
149149
# "ITree" -> overlay
@@ -225,6 +225,7 @@ with builtins; with (import <nixpkgs> {}).lib;
225225
sf.override.version = "proux01:split_stdlib";
226226
bbv.override.version = "proux01:split_stdlib";
227227
json.override.version = "proux01:split_stdlib";
228+
neural-net-coq-interp.override.version = "proux01:split_stdlib";
228229
};
229230
in {
230231
"coq-master".coqPackages = common-bundles // {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{ lib, mkCoqDerivation, coq, stdlib, version ? null }:
2+
3+
mkCoqDerivation {
4+
pname = "neural-net-coq-interp";
5+
owner = "JasonGross";
6+
inherit version;
7+
defaultVersion = null; # no released version
8+
9+
propagatedBuildInputs = [ stdlib ];
10+
}

0 commit comments

Comments
 (0)