/ shell.nix
shell.nix
1 (import 2 ( 3 let lock = builtins.fromJSON (builtins.readFile ./flake.lock); in 4 fetchTarball { 5 url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz"; 6 sha256 = lock.nodes.flake-compat.locked.narHash; 7 } 8 ) 9 { src = ./.; } 10 # Since a lot of existing CI tests is based on `shell.nix` 11 # we forward to the integrationTests shell, instead of the 12 # default (developer) shell. 13 ).shellNix.devShells."${builtins.currentSystem}".integrationTests