Skip to content

Commit b3bb78e

Browse files
authored
Merge pull request #38 from DeterminateSystems/nix-2.25.4-prep
Update to Nix 2.25.4
2 parents 98bbabc + 660cf49 commit b3bb78e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
description = "Determinate Nix";
33
inputs = {
4-
nix.url = "https://flakehub.com/f/NixOS/nix/=2.25.3";
4+
nix.url = "https://flakehub.com/f/NixOS/nix/=2.25.4";
55
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*";
66
};
77

@@ -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)