nix/lib/sops-nix.nix

6 lines
309 B
Nix
Raw Normal View History

2023-09-19 18:19:59 +09:00
# Useful to avoid using channels when using legacy nix commands
2023-09-23 09:05:32 +09:00
let sops-nix-lock = (builtins.fromJSON (builtins.readFile ../flake.lock)).nodes.sops-nix.locked;
2023-09-19 18:19:59 +09:00
in import (fetchTarball {
2023-09-19 21:00:19 +09:00
url = "https://github.com/Mic92/sops-nix/archive/${sops-nix-lock.rev}.tar.gz";
2023-09-19 18:20:42 +09:00
sha256 = sops-nix-lock.narHash;
2023-09-19 18:19:59 +09:00
})