Skip to content

Commit ac54564

Browse files
committed
fix: forgot default.nix
1 parent d9c44dc commit ac54564

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

default.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
let
2+
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
3+
flakeCompat = fetchTarball {
4+
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
5+
sha256 = lock.nodes.flake-compat.locked.narHash;
6+
};
7+
exampleAddon = import flakeCompat {
8+
src = ./.;
9+
};
10+
in
11+
exampleAddon.defaultNix

0 commit comments

Comments
 (0)