Skip to content

Commit

Permalink
Fix flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
sonmarcho committed Nov 21, 2023
1 parent 0a6ddc7 commit 5634526
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,22 @@
};
buildInputs = [ ocamlPackages.calendar ];
};
charon-name_matcher_parser =
ocamlPackages.buildDunePackage {
pname = "name_matcher_parser";
version = "0.1.0";
duneVersion = "3";
nativeBuildInputs = with ocamlPackages; [
menhir
];
buildInputs = with ocamlPackages; [
ppx_deriving
visitors
zarith
menhirLib
];
src = ./charon-ml;
};
mk-charon-ml = doCheck:
ocamlPackages.buildDunePackage {
pname = "charon";
Expand All @@ -121,6 +137,8 @@
zarith
yojson
calendar
menhirLib
charon-name_matcher_parser
];
src = ./charon-ml;
inherit doCheck;
Expand Down

0 comments on commit 5634526

Please sign in to comment.