diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-01-18 16:45:03 -0600 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-01-18 16:45:03 -0600 |
commit | 81fb055292f49a76732c1966874b8d2ad2cb1807 (patch) | |
tree | 7e9a8e9128a0a28616c55b50f12e8bfe4da2660b /flake.nix | |
parent | c3efede502f0f9ba3b03195ac8f30fff0376c8ab (diff) |
Start of our own AST.
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -20,7 +20,10 @@ }; in rec { devShells.default = pkgs.mkShell { - inputsFrom = builtins.attrValues packages; + inputsFrom = builtins.attrValues (packages // { + discocaml = + pkgs.ocaml-ng.ocamlPackages_5_1.callPackage ./discocaml { }; + }); nativeBuildInputs = [ pkgs.bubblewrap pkgs.cargo-watch |