forked from yuyichao/nur-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathci.nix
65 lines (54 loc) · 2.14 KB
/
ci.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# This file provides all the buildable and cacheable packages and
# package outputs in your package set. These are what gets built by CI,
# so if you correctly mark packages as
#
# - broken (using `meta.broken`),
# - unfree (using `meta.license.free`), and
# - locally built (using `preferLocalBuild`)
#
# then your CI will be able to build and cache only those packages for
# which this is possible.
{ pkgs ? import <nixpkgs> { } }:
with builtins;
let
isReserved = n: n == "lib" || n == "overlays" || n == "modules" || n == "pkgs";
isDerivation = p: isAttrs p && p ? type && p.type == "derivation";
evaluatedPackages = builtins.map builtins.fromJSON (pkgs.lib.splitString "\n" (pkgs.lib.fileContents ./evaluations.json));
canEvaluate = p: elem: ((elem ? "attr" && (if isAttrs p then p ? "pname" else false)) && (pkgs.lib.hasInfix p.pname elem.attr) && (! (elem ? "error")));
isBuildable = p: any (canEvaluate p) evaluatedPackages;
isCacheable = p: !(p.preferLocalBuild or false);
shouldRecurseForDerivations = p: isAttrs p && p.recurseForDerivations or false;
nameValuePair = n: v: { name = n; value = v; };
concatMap = builtins.concatMap or (f: xs: concatLists (map f xs));
flattenPkgs = s:
let
f = p:
if shouldRecurseForDerivations p then flattenPkgs p
else if isDerivation p then [ p ]
else [ ];
in
concatMap f (attrValues s);
outputsOf = p: map (o: p.${o}) p.outputs;
nurAttrs = import ./default.nix { };
nurPkgs =
flattenPkgs
(listToAttrs
(map (n: nameValuePair n nurAttrs.${n})
(filter (n: !isReserved n)
(attrNames nurAttrs))));
# Generate all paths to all (buildable) NUR packages
allAttrPaths = pkgs.lib.mapAttrsRecursiveCond shouldRecurseForDerivations
(path: value:
if (isBuildable value && !(isBool value)) then
concatStringsSep "." path
else
null)
(pkgs.lib.filterAttrs (n: v: !isReserved n) nurAttrs);
in
rec {
buildPkgs = filter isBuildable nurPkgs;
cachePkgs = filter isCacheable buildPkgs;
buildOutputs = concatMap outputsOf buildPkgs;
cacheOutputs = concatMap outputsOf cachePkgs;
inherit allAttrPaths;
}