mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-22 23:17:15 +03:00
8b42ac1096
In it's current form the default.nix file is not useful, but a shell.nix for classic Nix development might be.
12 lines
319 B
Nix
12 lines
319 B
Nix
let
|
|
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
|
|
locked = lock.nodes.flake-compat.locked;
|
|
compat = fetchTarball {
|
|
url = "https://github.com/${locked.owner}/${locked.repo}/archive/${locked.rev}.tar.gz";
|
|
sha256 = locked.narHash;
|
|
};
|
|
|
|
flake = import compat { src = ./.; };
|
|
in
|
|
flake.shellNix
|