Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
set -eux

# Ensure all the checks can be built without internet
nix flake check --all-systems --max-jobs 0
nix flake check
nix build .#tarballs_json
cat result

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
set -eux

# Ensure all the checks can be built without internet
nix flake check --all-systems --max-jobs 0
nix flake check
nix build .#tarballs_json
cat result

Expand Down
66 changes: 24 additions & 42 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.26.1";
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
Loading
Loading