Skip to content

Commit 1b15377

Browse files
authored
default.nix: Fix flake-compat URL (#1654)
A `$` for string interpolation was missed when changing the URL in the call to `fetchzip` for flake-compat to use the pin from `flake.lock` in c683efa
1 parent 20c33af commit 1b15377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let
1212
pkgs = args.pkgs or (import nixpkgsSrc {});
1313
flake-compat =
1414
pkgs.fetchzip {
15-
url = "https://github.com/edolstra/flake-compat/archive/{flakeCompatPin.rev}.tar.gz";
15+
url = "https://github.com/edolstra/flake-compat/archive/${flakeCompatPin.rev}.tar.gz";
1616
sha256 = flakeCompatPin.narHash;
1717
};
1818
self = import flake-compat {

0 commit comments

Comments
 (0)