forked from IntersectMBO/cardano-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.nix
18 lines (18 loc) · 767 Bytes
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# a non-flake nix compat wrapper using https://github.com/edolstra/flake-compat
# DO NOT EDIT THIS FILE
__trace
''************************************************************************************
Hi there! This project has been moved to nix flakes. You are using the `nix-shell`
compatibility layer. Please consider using `nix develop` instead.
************************************************************************************
''
(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