mirror of
https://github.com/numtide/flake-utils.git
synced 2024-12-15 17:50:53 +00:00
33 lines
1,018 B
Nix
33 lines
1,018 B
Nix
{ allSystems }:
|
|
system: packages:
|
|
let
|
|
# Adopted from nixpkgs.lib
|
|
inherit (builtins) listToAttrs concatMap attrNames;
|
|
nameValuePair = name: value: { inherit name value; };
|
|
filterAttrs = pred: set:
|
|
listToAttrs (
|
|
concatMap
|
|
(name:
|
|
let v = set.${name}; in
|
|
if pred name v then [ (nameValuePair name v) ] else [ ]
|
|
)
|
|
(attrNames set)
|
|
);
|
|
|
|
# Everything that nix flake check requires for the packages output
|
|
sieve = n: v:
|
|
with v;
|
|
let
|
|
inherit (builtins) isAttrs;
|
|
isDerivation = x: isAttrs x && x ? type && x.type == "derivation";
|
|
isBroken = meta.broken or false;
|
|
platforms = meta.platforms or allSystems;
|
|
badPlatforms = meta.badPlatforms or [ ];
|
|
in
|
|
# check for isDerivation, so this is independently useful of
|
|
# flattenTree, which also does filter on derivations
|
|
isDerivation v && !isBroken && (builtins.elem system platforms) &&
|
|
!(builtins.elem system badPlatforms)
|
|
;
|
|
in
|
|
filterAttrs sieve packages
|