From 174b22b2c49753ca84541d323e26af54c3fc5899 Mon Sep 17 00:00:00 2001 From: Guillaume Girol Date: Tue, 19 Dec 2023 12:00:00 +0000 Subject: [PATCH] wip --- test.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.nix b/test.nix index 956c688..8661847 100644 --- a/test.nix +++ b/test.nix @@ -1,7 +1,7 @@ let isDerivation = x: (x.type or null) == "derivation"; tryEvalOpt = x: let res = builtins.tryEval x; in if res.success then res.value else null; - allNixVersions = pkgs: [ pkgs.nixStable pkgs.nixUnstable ] ++ (builtins.filter isDerivation (map tryEvalOpt (builtins.attrValues (pkgs.nixVersions or { })))); + allNixVersions = pkgs: [ pkgs.nixStable pkgs.nixUnstable ]; # ++ (builtins.filter isDerivation (map tryEvalOpt (builtins.attrValues (pkgs.nixVersions or { })))); isDarwin = (builtins.match ".*darwin.*" builtins.currentSystem) != null; channelsToTest = if isDarwin then [ "channel:nixos-unstable" ] # buildRustCrate is broken on 23.05 due to stripping rlibs