erg/default.nix
2022-08-17 06:28:22 +09:00

12 lines
261 B
Nix

(
import
(
fetchTarball
(with (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.flake-compat.locked; {
url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz";
sha256 = narHash;
})
)
{src = ./.;}
)
.defaultNix