Browse Source
This uses flakes-compat to read the `flake.nix` and expose it to non-flake users. Signed-off-by: Raito Bezarius <masterancpp@gmail.com>merge-requests/594/head
3 changed files with 31 additions and 0 deletions
@ -0,0 +1,10 @@
|
||||
(import |
||||
( |
||||
let lock = builtins.fromJSON (builtins.readFile ./flake.lock); in |
||||
fetchTarball { |
||||
url = lock.nodes.flake-compat.locked.url or "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz"; |
||||
sha256 = lock.nodes.flake-compat.locked.narHash; |
||||
} |
||||
) |
||||
{ src = ./.; } |
||||
).defaultNix |
||||
Loading…
Reference in new issue