Skip to content

Commit

Permalink
ci: allow unfree
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnvgr committed Oct 28, 2023
1 parent ea88e86 commit 3a10a91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ci.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ with builtins;
let
isReserved = n: n == "lib" || n == "overlays" || n == "modules";
isDerivation = p: isAttrs p && p ? type && p.type == "derivation";
isBuildable = p: !(p.meta.broken or false) && p.meta.license.free or true;
# isBuildable = p: !(p.meta.broken or false) && p.meta.license.free or true;
isBuildable = p: !(p.meta.broken or false);
isCacheable = p: !(p.preferLocalBuild or false);
shouldRecurseForDerivations = p: isAttrs p && p.recurseForDerivations or false;

Expand Down

0 comments on commit 3a10a91

Please sign in to comment.