feat: flake-compat

This commit is contained in:
Kat Inskip 2022-12-04 15:55:08 +01:00
parent ed581ca5b4
commit 419fcaa79f
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
5 changed files with 170 additions and 132 deletions

10
inputs.nix Normal file
View file

@ -0,0 +1,10 @@
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
flakeCompat = fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
};
kittywitch = import flakeCompat {
src = ./.;
};
in kittywitch.defaultNix.inputs