pub-solar-os/lib/compat/default.nix

17 lines
340 B
Nix
Raw Normal View History

let
2021-02-15 05:08:24 +00:00
inherit (lock.nodes.flake-compat.locked) rev narHash;
lock = builtins.fromJSON (builtins.readFile "${../..}/flake.lock");
flake = (import
(
fetchTarball {
2021-02-15 05:08:24 +00:00
url = "https://github.com/edolstra/flake-compat/archive/${rev}.tar.gz";
sha256 = narHash;
}
)
{
2021-04-19 02:51:47 +00:00
src = ../../.;
});
in
flake