Nix: move to devshell

This commit is contained in:
Jan Kremer 2024-04-04 22:28:32 +02:00
parent f91ff03006
commit 8c9f075a4e
Signed by: jan
GPG key ID: A7DA689CB3B078EC
5 changed files with 153 additions and 26 deletions

23
shell.nix Normal file
View file

@ -0,0 +1,23 @@
# Use `builtins.getFlake` if available
if builtins ? getFlake
then
let
scheme =
if builtins.pathExists ./.git
then "git+file"
else "path";
in
(builtins.getFlake "${scheme}://${toString ./.}").devShells.${builtins.currentSystem}.default
# Otherwise we'll use the flake-compat shim
else
(import
(
let lock = builtins.fromJSON (builtins.readFile ./flake.lock); in
fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
)
{ src = ./.; }
).shellNix