We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8123d46 commit a5e30afCopy full SHA for a5e30af
shell.nix
@@ -0,0 +1,10 @@
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
+).shellNix
0 commit comments