mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2025-10-01 22:43:39 +00:00
11 lines
379 B
Nix
11 lines
379 B
Nix
(import (
|
|
let
|
|
lock = builtins.fromJSON (builtins.readFile ../flake.lock);
|
|
flakeCompatNode = lock.nodes.${lock.nodes.root.inputs.flake-compat}.locked;
|
|
in
|
|
fetchTarball {
|
|
url = "https://github.com/${flakeCompatNode.owner}/${flakeCompatNode.repo}/archive/${flakeCompatNode.rev}.tar.gz";
|
|
sha256 = flakeCompatNode.narHash;
|
|
}
|
|
) {src = ./.;})
|
|
.defaultNix
|