summaryrefslogtreecommitdiff
path: root/ci/default.nix
diff options
context:
space:
mode:
authorWolfgang Walther <walther@technowledgy.de>2025-07-24 12:54:52 +0200
committerWolfgang Walther <walther@technowledgy.de>2025-07-24 13:52:37 +0200
commitea970ff3bed430c4d447cec8147494b644d1914d (patch)
tree95ee125319fde12c7f33de62593f3b029cccb327 /ci/default.nix
parentnixos/doc/wireless: fix comments (diff)
downloadnixpkgs-ea970ff3bed430c4d447cec8147494b644d1914d.tar.gz
ci/parse: raise minimum test to Nix 2.24
Nix 2.3 is marked as insecure and thus not cached anymore. We'll either need to patch it and cache it again or drop it.
Diffstat (limited to 'ci/default.nix')
-rw-r--r--ci/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/default.nix b/ci/default.nix
index a33b023a6beb..1f87117d39fc 100644
--- a/ci/default.nix
+++ b/ci/default.nix
@@ -110,7 +110,8 @@ rec {
parse = pkgs.lib.recurseIntoAttrs {
latest = pkgs.callPackage ./parse.nix { nix = pkgs.nixVersions.latest; };
lix = pkgs.callPackage ./parse.nix { nix = pkgs.lix; };
- minimum = pkgs.callPackage ./parse.nix { nix = pkgs.nixVersions.minimum; };
+ # TODO: Raise nixVersions.minimum to 2.24 and flip back to it.
+ minimum = pkgs.callPackage ./parse.nix { nix = pkgs.nixVersions.nix_2_24; };
};
shell = import ../shell.nix { inherit nixpkgs system; };
tarball = import ../pkgs/top-level/make-tarball.nix {