diff --git a/test.nix b/test.nix index 956c688..7b04906 100644 --- a/test.nix +++ b/test.nix @@ -2,11 +2,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 { })))); - isDarwin = (builtins.match ".*darwin.*" builtins.currentSystem) != null; - channelsToTest = if isDarwin then - [ "channel:nixos-unstable" ] # buildRustCrate is broken on 23.05 due to stripping rlibs - else - [ "channel:nixos-23.11" "channel:nixos-unstable" ]; + channelsToTest = [ "channel:nixos-23.11" "channel:nixos-unstable" ]; in map (url: