6 lines
309 B
Nix
6 lines
309 B
Nix
|
# Useful to avoid using channels when using legacy nix commands
|
||
|
let sops-nix-lock = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.sops-nix.locked;
|
||
|
in import (fetchTarball {
|
||
|
url = "https://github.com/Mic92/sops-nix/archive/${sops-nix-lock.rev}.tar.gz";
|
||
|
sha256 = sops-nix.lock.narHash;
|
||
|
})
|