Skip to content

Commit 660cf49

Browse files
committed
checks.binaryTarball -> packages.binaryTarball
1 parent c5d03fe commit 660cf49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flake.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
in
2727
{
2828
closures = forAllSystems ({ system, ... }: nix.packages."${system}".default);
29-
tarballs_indirect = forAllSystems ({ system, ... }: nix.checks."${system}".binaryTarball);
30-
tarballs_direct = forAllSystems ({ system, ... }: "${nix.checks."${system}".binaryTarball}/nix-${nix.packages."${system}".default.version}-${system}.tar.xz");
29+
tarballs_indirect = forAllSystems ({ system, ... }: nix.packages."${system}".binaryTarball);
30+
tarballs_direct = forAllSystems ({ system, ... }: "${nix.packages."${system}".binaryTarball}/nix-${nix.packages."${system}".default.version}-${system}.tar.xz");
3131

3232
checks = forAllSystems ({ system, ... }: {
3333
closure = nix.packages."${system}".default;
34-
tarball = nix.checks."${system}".binaryTarball;
34+
tarball = nix.packages."${system}".binaryTarball;
3535
});
3636

3737
packages = forAllSystems ({ system, pkgs, ... }: {

0 commit comments

Comments
 (0)