This commit is contained in:
Paul-Henri Froidmont 2022-12-02 16:48:27 +01:00
commit bfd82a5476
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
9 changed files with 2390 additions and 0 deletions

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
(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