Add a dev shell to the flake

This commit is contained in:
Mathew Polzin 2024-02-12 21:43:19 -06:00
parent 381438533c
commit f91e92bd54

View File

@ -74,6 +74,9 @@
inherit pkgs idris-emacs-src idris2Pkg;
});
inherit buildIdris;
devShells.default = pkgs.mkShell {
packages = idris2Pkg.buildInputs;
};
};
in lib.mkOvrOptsFlake
(opts: flake-utils.lib.eachDefaultSystem (per-system opts) // sys-agnostic);