diff options
author | Ryan Lahfa | 2024-03-21 17:05:46 +0100 |
---|---|---|
committer | Ryan Lahfa | 2024-03-21 17:06:30 +0100 |
commit | 884dcc071b0a62fc1634e692107c6af80aa7d352 (patch) | |
tree | 819ad1f0eb3ecf103325d816adc7fe4d41cae3f9 | |
parent | cede3bf0cd88728441d94fb9715678eb19bc0a10 (diff) |
project(installation): provide a default shell for `aeneas`
This makes it easy to run `make build` and `make test` without figuring anything
about the dependencies.
Signed-off-by: Ryan Lahfa <ryan.lahfa@inria.fr>
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -152,6 +152,15 @@ inherit aeneas; default = aeneas; }; + devShells.default = pkgs.mkShell { + packages = [ + pkgs.ocamlPackages.odoc + ]; + + inputsFrom = [ + self.packages.${system}.aeneas + ]; + }; checks = { inherit aeneas aeneas-tests aeneas-verify-fstar |