mirror of
https://github.com/zaphar/clio.git
synced 2025-07-21 19:50:21 -04:00
12 lines
292 B
Nix
12 lines
292 B
Nix
let
|
|
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
|
|
in
|
|
(import (
|
|
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
|