Skip to content

Commit

Permalink
Merge pull request #38 from DeterminateSystems/nix-2.25.4-prep
Browse files Browse the repository at this point in the history
Update to Nix 2.25.4
  • Loading branch information
grahamc authored Jan 13, 2025
2 parents 98bbabc + 660cf49 commit b3bb78e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
description = "Determinate Nix";
inputs = {
nix.url = "https://flakehub.com/f/NixOS/nix/=2.25.3";
nix.url = "https://flakehub.com/f/NixOS/nix/=2.25.4";
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*";
};

Expand All @@ -26,12 +26,12 @@
in
{
closures = forAllSystems ({ system, ... }: nix.packages."${system}".default);
tarballs_indirect = forAllSystems ({ system, ... }: nix.checks."${system}".binaryTarball);
tarballs_direct = forAllSystems ({ system, ... }: "${nix.checks."${system}".binaryTarball}/nix-${nix.packages."${system}".default.version}-${system}.tar.xz");
tarballs_indirect = forAllSystems ({ system, ... }: nix.packages."${system}".binaryTarball);
tarballs_direct = forAllSystems ({ system, ... }: "${nix.packages."${system}".binaryTarball}/nix-${nix.packages."${system}".default.version}-${system}.tar.xz");

checks = forAllSystems ({ system, ... }: {
closure = nix.packages."${system}".default;
tarball = nix.checks."${system}".binaryTarball;
tarball = nix.packages."${system}".binaryTarball;
});

packages = forAllSystems ({ system, pkgs, ... }: {
Expand Down

0 comments on commit b3bb78e

Please # to comment.