remove debug prints, oops
This commit is contained in:
parent
3393f1ecfe
commit
5ccc27c0e2
@ -1,10 +1,7 @@
|
||||
open Meat
|
||||
|
||||
let () =
|
||||
print_int (Array.length Sys.argv);
|
||||
if Array.length Sys.argv >= 2 then (
|
||||
print_endline " args. contents:";
|
||||
Array.iter print_endline Sys.argv;
|
||||
match String.lowercase_ascii (Array.get Sys.argv 1) with
|
||||
| "yum" -> yum ()
|
||||
| "cook" -> cook ()
|
||||
|
@ -89,7 +89,11 @@
|
||||
)
|
||||
// {
|
||||
nixosModules.meat = import ./nix/module.nix {
|
||||
meatOverlays = [self.overlays.meat nh-overlay];
|
||||
meatOverlays = [
|
||||
self.overlays.meat
|
||||
nh-overlay
|
||||
ocaml-overlay.overlays.default
|
||||
];
|
||||
lixModule = lix-module;
|
||||
};
|
||||
|
||||
|
@ -5,6 +5,7 @@
|
||||
ocaml-deps,
|
||||
nh,
|
||||
nix,
|
||||
git,
|
||||
...
|
||||
}:
|
||||
ocamlPackages.buildDunePackage {
|
||||
@ -14,5 +15,6 @@ ocamlPackages.buildDunePackage {
|
||||
minimalOCamlVersion = "5.2";
|
||||
|
||||
src = ./..;
|
||||
nativeBuildInputs = [git];
|
||||
buildInputs = ocaml-deps;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user