Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
symphorien committed Dec 19, 2023
1 parent 61a4e5f commit 174b22b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.nix
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 174b22b

Please sign in to comment.