fmt
This commit is contained in:
parent
b767bad490
commit
28557e4f65
1 changed files with 13 additions and 9 deletions
14
shell.nix
14
shell.nix
|
@ -1,9 +1,13 @@
|
|||
(import (
|
||||
(import
|
||||
(
|
||||
let
|
||||
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
|
||||
in fetchTarball {
|
||||
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; }
|
||||
) {
|
||||
sha256 = lock.nodes.flake-compat.locked.narHash;
|
||||
}
|
||||
)
|
||||
{
|
||||
src = ./.;
|
||||
}).shellNix
|
||||
}).shellNix
|
||||
|
|
Loading…
Reference in a new issue