We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9c44dc commit ac54564Copy full SHA for ac54564
default.nix
@@ -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