1
1
mirror of https://github.com/srid/ema.git synced 2024-11-30 03:03:13 +03:00
ema/default.nix

14 lines
320 B
Nix
Raw Normal View History

2021-04-21 01:00:55 +03:00
(import
(
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
in
fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
)
{
src = ./.;
}).defaultNix