2006-09-25 12:07:59 +02:00
|
|
|
# Utility functions.
|
|
|
|
|
2006-11-27 17:58:08 +01:00
|
|
|
let
|
|
|
|
|
2007-01-29 15:53:23 +01:00
|
|
|
inherit (builtins)
|
2008-01-16 04:29:56 +01:00
|
|
|
head tail isList stringLength substring lessThan sub
|
|
|
|
listToAttrs attrNames hasAttr;
|
2006-11-27 17:58:08 +01:00
|
|
|
|
|
|
|
in
|
|
|
|
|
2006-09-25 12:07:59 +02:00
|
|
|
rec {
|
2008-01-28 20:30:13 +01:00
|
|
|
listOfListsToAttrs = ll : builtins.listToAttrs (map (l : { name = (head l); value = (head (tail l)); }) ll);
|
2006-09-25 12:07:59 +02:00
|
|
|
|
2008-01-04 16:06:16 +01:00
|
|
|
|
|
|
|
# Identity function.
|
|
|
|
id = x: x;
|
|
|
|
|
|
|
|
|
2008-01-17 02:31:07 +01:00
|
|
|
# accumulates / merges all attr sets until null is fed.
|
|
|
|
# example: sumArgs id { a = 'a'; x = 'x'; } { y = 'y'; x = 'X'; } null
|
|
|
|
# result : { a = 'a'; x = 'X'; y = 'Y'; }
|
2007-10-27 19:54:20 +02:00
|
|
|
innerSumArgs = f : x : y : (if y == null then (f x)
|
|
|
|
else (innerSumArgs f (x // y)));
|
|
|
|
sumArgs = f : innerSumArgs f {};
|
|
|
|
|
2008-03-06 10:34:36 +01:00
|
|
|
# Advanced sumArgs version. Hm, twice as slow, I'm afraid.
|
|
|
|
# composedArgs id (x:x//{a="b";}) (x:x//{b=x.a + "c";}) null;
|
|
|
|
# {a="b" ; b="bc";};
|
|
|
|
innerComposedArgs = f : x : y : (if y==null then (f x)
|
|
|
|
else (if (builtins.isAttrs y) then
|
|
|
|
(innerComposedArgs f (x//y))
|
|
|
|
else (innerComposedArgs f (y x))));
|
|
|
|
composedArgs = f: innerComposedArgs f {};
|
|
|
|
|
2008-08-20 13:20:32 +02:00
|
|
|
defaultMergeArg = x : y: if builtins.isAttrs y then
|
|
|
|
y
|
2008-08-20 08:45:14 +02:00
|
|
|
else
|
2008-08-20 13:20:32 +02:00
|
|
|
(y x);
|
|
|
|
defaultMerge = x: y: x // (defaultMergeArg x y);
|
2008-08-15 00:12:50 +02:00
|
|
|
sumTwoArgs = f: x: y:
|
2008-08-20 08:45:14 +02:00
|
|
|
f (defaultMerge x y);
|
|
|
|
foldArgs = merger: f: init: x:
|
2008-11-04 22:40:51 +01:00
|
|
|
let arg=(merger init (defaultMergeArg init x)); in
|
|
|
|
# now add the function with composed args already applied to the final attrs
|
|
|
|
setAttrMerge "passthru" {} (f arg) ( x : x // { function = foldArgs merger f arg; } );
|
2008-12-02 13:26:53 +01:00
|
|
|
|
|
|
|
# returns f x // { passthru.fun = y : f (merge x y); } while preserving other passthru names.
|
|
|
|
# example: let ex = applyAndFun (x : removeAttrs x ["fixed"]) (mergeOrApply mergeAttr) {name = 6;};
|
|
|
|
# usage1 = ex.passthru.fun { name = 7; }; # result: { name = 7;}
|
|
|
|
# usage2 = ex.passthru.fun (a: a // {name = __add a.name 1; }); # result: { a = 7; }
|
|
|
|
# fix usage:
|
|
|
|
# usage3a = ex.passthru.fun (a: a // {name2 = a.fixed.toBePassed; }); # usage3a will fail because toBePassed is not yet given
|
|
|
|
# usage3b usage3a.passthru.fun { toBePassed = "foo";}; # result { name = 7; name2 = "foo"; toBePassed = "foo"; fixed = <this attrs>; }
|
|
|
|
applyAndFun = f : merge : x : assert (__isAttrs x || __isFunction x);
|
|
|
|
let takeFix = if (__isFunction x) then x else (attr: merge attr x); in
|
|
|
|
setAttrMerge "passthru" {} (fix (fixed : f (takeFix {inherit fixed;})))
|
|
|
|
( y : y //
|
|
|
|
{
|
|
|
|
fun = z : applyAndFun f merge (fixed: merge (takeFix fixed) z);
|
2008-12-02 13:28:45 +01:00
|
|
|
funMerge = z : applyAndFun f merge (fixed: let e = takeFix fixed; in merge e (merge e z));
|
2008-12-02 13:26:53 +01:00
|
|
|
} );
|
|
|
|
mergeOrApply = merge : x : y : if (__isFunction y) then y x else merge x y;
|
|
|
|
|
2008-11-04 22:40:51 +01:00
|
|
|
# rec { # an example of how composedArgsAndFun can be used
|
|
|
|
# a = composedArgsAndFun (x : x) { a = ["2"]; meta = { d = "bar";}; };
|
|
|
|
# # meta.d will be lost ! It's your task to preserve it (eg using a merge function)
|
|
|
|
# b = a.passthru.function { a = [ "3" ]; meta = { d2 = "bar2";}; };
|
|
|
|
# # instead of passing/ overriding values you can use a merge function:
|
|
|
|
# c = b.passthru.function ( x: { a = x.a ++ ["4"]; }); # consider using (maybeAttr "a" [] x)
|
|
|
|
# }
|
|
|
|
# result:
|
|
|
|
# {
|
|
|
|
# a = { a = ["2"]; meta = { d = "bar"; }; passthru = { function = .. }; };
|
|
|
|
# b = { a = ["3"]; meta = { d2 = "bar2"; }; passthru = { function = .. }; };
|
|
|
|
# c = { a = ["3" "4"]; meta = { d2 = "bar2"; }; passthru = { function = .. }; };
|
|
|
|
# # c2 is equal to c
|
|
|
|
# }
|
2008-08-20 13:20:32 +02:00
|
|
|
composedArgsAndFun = f: foldArgs defaultMerge f {};
|
2008-08-15 00:04:30 +02:00
|
|
|
|
2008-01-17 02:31:07 +01:00
|
|
|
# example a = pairMap (x : y : x + y) ["a" "b" "c" "d"];
|
|
|
|
# result: ["ab" "cd"]
|
2007-11-05 09:32:20 +01:00
|
|
|
innerPairMap = acc: f: l:
|
|
|
|
if l == [] then acc else
|
|
|
|
innerPairMap (acc ++ [(f (head l)(head (tail l)))])
|
|
|
|
f (tail (tail l));
|
|
|
|
pairMap = innerPairMap [];
|
|
|
|
|
2008-01-04 16:06:16 +01:00
|
|
|
|
2008-02-13 11:09:29 +01:00
|
|
|
|
2006-09-25 12:07:59 +02:00
|
|
|
# "Fold" a binary function `op' between successive elements of
|
|
|
|
# `list' with `nul' as the starting value, i.e., `fold op nul [x_1
|
|
|
|
# x_2 ... x_n] == op x_1 (op x_2 ... (op x_n nul))'. (This is
|
|
|
|
# Haskell's foldr).
|
|
|
|
fold = op: nul: list:
|
|
|
|
if list == []
|
|
|
|
then nul
|
2006-11-27 17:58:08 +01:00
|
|
|
else op (head list) (fold op nul (tail list));
|
2006-09-25 12:07:59 +02:00
|
|
|
|
2008-12-02 13:28:21 +01:00
|
|
|
# Haskell's fold
|
|
|
|
foldl = op: nul: list:
|
|
|
|
if list == []
|
|
|
|
then nul
|
|
|
|
else fold op (op nul (head list)) (tail list);
|
|
|
|
|
2006-09-25 12:07:59 +02:00
|
|
|
|
2007-03-06 01:01:27 +01:00
|
|
|
# Concatenate a list of lists.
|
2008-12-02 13:26:20 +01:00
|
|
|
concatList = x : y : x ++ y;
|
|
|
|
concatLists = fold concatList [];
|
2007-03-06 01:01:27 +01:00
|
|
|
|
|
|
|
|
2006-09-25 12:07:59 +02:00
|
|
|
# Concatenate a list of strings.
|
|
|
|
concatStrings =
|
|
|
|
fold (x: y: x + y) "";
|
|
|
|
|
|
|
|
|
2008-02-05 12:41:09 +01:00
|
|
|
# Map and concatenate the result.
|
|
|
|
concatMap = f: list: concatLists (map f list);
|
|
|
|
|
2008-02-14 14:34:55 +01:00
|
|
|
concatMapStrings = f: list: concatStrings (map f list);
|
2008-02-14 14:16:22 +01:00
|
|
|
|
2008-02-05 12:41:09 +01:00
|
|
|
|
2006-10-12 12:53:16 +02:00
|
|
|
# Place an element between each element of a list, e.g.,
|
|
|
|
# `intersperse "," ["a" "b" "c"]' returns ["a" "," "b" "," "c"].
|
|
|
|
intersperse = separator: list:
|
2006-11-27 17:58:08 +01:00
|
|
|
if list == [] || tail list == []
|
2006-10-12 12:53:16 +02:00
|
|
|
then list
|
2006-11-27 17:58:08 +01:00
|
|
|
else [(head list) separator]
|
|
|
|
++ (intersperse separator (tail list));
|
2006-10-12 12:53:16 +02:00
|
|
|
|
2008-01-16 04:29:56 +01:00
|
|
|
toList = x : if (__isList x) then x else [x];
|
2006-10-12 12:53:16 +02:00
|
|
|
|
2007-05-27 16:34:01 +02:00
|
|
|
concatStringsSep = separator: list:
|
|
|
|
concatStrings (intersperse separator list);
|
|
|
|
|
2008-06-04 11:56:11 +02:00
|
|
|
makeLibraryPath = paths: concatStringsSep ":" (map (path: path + "/lib") paths);
|
|
|
|
|
2007-05-27 16:34:01 +02:00
|
|
|
|
2006-09-25 12:07:59 +02:00
|
|
|
# Flatten the argument into a single list; that is, nested lists are
|
|
|
|
# spliced into the top-level lists. E.g., `flatten [1 [2 [3] 4] 5]
|
|
|
|
# == [1 2 3 4 5]' and `flatten 1 == [1]'.
|
|
|
|
flatten = x:
|
2006-11-27 17:58:08 +01:00
|
|
|
if isList x
|
2006-09-25 12:07:59 +02:00
|
|
|
then fold (x: y: (flatten x) ++ y) [] x
|
|
|
|
else [x];
|
|
|
|
|
|
|
|
|
|
|
|
# Return an attribute from nested attribute sets. For instance ["x"
|
|
|
|
# "y"] applied to some set e returns e.x.y, if it exists. The
|
|
|
|
# default value is returned otherwise.
|
2008-01-16 04:29:56 +01:00
|
|
|
# comment: there is also builtins.getAttr ? (is there a better name for this function?)
|
2006-09-25 12:07:59 +02:00
|
|
|
getAttr = attrPath: default: e:
|
2008-01-04 16:06:16 +01:00
|
|
|
let attr = head attrPath;
|
|
|
|
in
|
|
|
|
if attrPath == [] then e
|
|
|
|
else if builtins ? hasAttr && builtins.hasAttr attr e
|
|
|
|
then getAttr (tail attrPath) default (builtins.getAttr attr e)
|
|
|
|
else default;
|
2006-11-27 17:58:08 +01:00
|
|
|
|
2008-02-13 11:09:29 +01:00
|
|
|
# shortcut for getAttr ["name"] default attrs
|
|
|
|
maybeAttr = name: default: attrs:
|
|
|
|
if (__hasAttr name attrs) then (__getAttr name attrs) else default;
|
|
|
|
|
2006-11-27 17:58:08 +01:00
|
|
|
|
|
|
|
# Filter a list using a predicate; that is, return a list containing
|
|
|
|
# every element from `list' for which `pred' returns true.
|
|
|
|
filter = pred: list:
|
|
|
|
fold (x: y: if pred x then [x] ++ y else y) [] list;
|
|
|
|
|
|
|
|
|
2007-01-08 23:49:26 +01:00
|
|
|
# Return true if `list' has an element `x':
|
|
|
|
elem = x: list: fold (a: bs: x == a || bs) false list;
|
|
|
|
|
|
|
|
|
2006-12-21 01:09:40 +01:00
|
|
|
# Find the sole element in the list matching the specified
|
2007-10-03 15:26:24 +02:00
|
|
|
# predicate, returns `default' if no such element exists, or
|
|
|
|
# `multiple' if there are multiple matching elements.
|
|
|
|
findSingle = pred: default: multiple: list:
|
2006-12-21 01:09:40 +01:00
|
|
|
let found = filter pred list;
|
|
|
|
in if found == [] then default
|
2007-10-03 15:26:24 +02:00
|
|
|
else if tail found != [] then multiple
|
2006-12-21 01:09:40 +01:00
|
|
|
else head found;
|
|
|
|
|
|
|
|
|
2008-01-04 16:06:16 +01:00
|
|
|
# Return true iff function `pred' returns true for at least element
|
|
|
|
# of `list'.
|
|
|
|
any = pred: list:
|
|
|
|
if list == [] then false
|
|
|
|
else if pred (head list) then true
|
|
|
|
else any pred (tail list);
|
|
|
|
|
|
|
|
|
|
|
|
# Return true iff function `pred' returns true for all elements of
|
|
|
|
# `list'.
|
|
|
|
all = pred: list:
|
|
|
|
if list == [] then true
|
|
|
|
else if pred (head list) then all pred (tail list)
|
|
|
|
else false;
|
|
|
|
|
2008-01-16 04:29:56 +01:00
|
|
|
# much shorter implementations using map and fold (are lazy as well)
|
|
|
|
# which ones are better?
|
|
|
|
# true if all/ at least one element(s) satisfy f
|
|
|
|
# all = f : l : fold logicalAND true (map f l);
|
|
|
|
# any = f : l : fold logicalOR false (map f l);
|
|
|
|
|
2008-01-04 16:06:16 +01:00
|
|
|
|
2006-11-27 17:58:08 +01:00
|
|
|
# Return true if each element of a list is equal, false otherwise.
|
|
|
|
eqLists = xs: ys:
|
|
|
|
if xs == [] && ys == [] then true
|
|
|
|
else if xs == [] || ys == [] then false
|
|
|
|
else head xs == head ys && eqLists (tail xs) (tail ys);
|
|
|
|
|
2008-01-04 16:06:16 +01:00
|
|
|
|
2007-10-29 11:52:04 +01:00
|
|
|
# Workaround, but works in stable Nix now.
|
|
|
|
eqStrings = a: b: (a+(substring 0 0 b)) == ((substring 0 0 a)+b);
|
2007-01-29 15:53:23 +01:00
|
|
|
|
2008-01-04 16:06:16 +01:00
|
|
|
|
2007-01-29 15:53:23 +01:00
|
|
|
# Determine whether a filename ends in the given suffix.
|
|
|
|
hasSuffix = ext: fileName:
|
|
|
|
let lenFileName = stringLength fileName;
|
|
|
|
lenExt = stringLength ext;
|
|
|
|
in !(lessThan lenFileName lenExt) &&
|
|
|
|
substring (sub lenFileName lenExt) lenFileName fileName == ext;
|
|
|
|
|
2007-10-29 11:52:04 +01:00
|
|
|
hasSuffixHack = a: b: hasSuffix (a+(substring 0 0 b)) ((substring 0 0 a)+b);
|
2008-02-12 11:08:57 +01:00
|
|
|
|
|
|
|
|
2007-01-29 15:53:23 +01:00
|
|
|
# Bring in a path as a source, filtering out all Subversion and CVS
|
|
|
|
# directories, as well as backup files (*~).
|
2007-01-15 10:20:18 +01:00
|
|
|
cleanSource =
|
2007-01-29 15:53:23 +01:00
|
|
|
let filter = name: type: let baseName = baseNameOf (toString name); in ! (
|
|
|
|
# Filter out Subversion and CVS directories.
|
2008-02-12 11:08:57 +01:00
|
|
|
(type == "directory" && (baseName == ".svn" || baseName == "CVS")) ||
|
2007-01-29 15:53:23 +01:00
|
|
|
# Filter out backup files.
|
2008-02-12 11:08:57 +01:00
|
|
|
(hasSuffix "~" baseName)
|
2007-01-29 15:53:23 +01:00
|
|
|
);
|
2007-01-15 10:20:18 +01:00
|
|
|
in src: builtins.filterSource filter src;
|
|
|
|
|
2007-05-20 22:24:43 +02:00
|
|
|
|
2008-01-04 16:06:16 +01:00
|
|
|
# Get all files ending with the specified suffices from the given
|
|
|
|
# directory. E.g. `sourceFilesBySuffices ./dir [".xml" ".c"]'.
|
|
|
|
sourceFilesBySuffices = path: exts:
|
|
|
|
let filter = name: type:
|
|
|
|
let base = baseNameOf (toString name);
|
|
|
|
in type != "directory" && any (ext: hasSuffix ext base) exts;
|
|
|
|
in builtins.filterSource filter path;
|
|
|
|
|
|
|
|
|
2007-05-20 22:24:43 +02:00
|
|
|
# Return a singleton list or an empty list, depending on a boolean
|
|
|
|
# value. Useful when building lists with optional elements
|
|
|
|
# (e.g. `++ optional (system == "i686-linux") flashplayer').
|
|
|
|
optional = cond: elem: if cond then [elem] else [];
|
|
|
|
|
2007-06-09 21:45:55 +02:00
|
|
|
|
2008-02-08 12:48:06 +01:00
|
|
|
# Return a list or an empty list, dependening on a boolean value.
|
|
|
|
optionals = cond: elems: if cond then elems else [];
|
2008-02-10 17:44:43 +01:00
|
|
|
|
2008-04-28 01:17:24 +02:00
|
|
|
optionalString = cond: string: if cond then string else "";
|
2007-06-09 21:45:55 +02:00
|
|
|
|
2008-11-23 01:19:06 +01:00
|
|
|
# Return the second argument if the first one is true or the empty version
|
|
|
|
# of the second argument.
|
|
|
|
ifEnable = cond: val:
|
|
|
|
if cond then val
|
|
|
|
else if builtins.isList val then []
|
|
|
|
else if builtins.isAttrs val then {}
|
|
|
|
# else if builtins.isString val then ""
|
2008-11-23 02:23:32 +01:00
|
|
|
else if (val == true || val == false) then false
|
2008-11-23 01:19:06 +01:00
|
|
|
else null;
|
|
|
|
|
2007-06-09 21:45:55 +02:00
|
|
|
# Return a list of integers from `first' up to and including `last'.
|
|
|
|
range = first: last:
|
|
|
|
if builtins.lessThan last first
|
|
|
|
then []
|
|
|
|
else [first] ++ range (builtins.add first 1) last;
|
|
|
|
|
2007-09-11 22:05:54 +02:00
|
|
|
|
2007-08-11 12:34:07 +02:00
|
|
|
# Return true only if there is an attribute and it is true.
|
|
|
|
checkFlag = attrSet: name:
|
|
|
|
if (name == "true") then true else
|
2007-08-11 13:14:36 +02:00
|
|
|
if (name == "false") then false else
|
2007-08-15 22:54:11 +02:00
|
|
|
if (isInList (getAttr ["flags"] [] attrSet) name) then true else
|
2007-08-11 12:34:07 +02:00
|
|
|
getAttr [name] false attrSet ;
|
|
|
|
|
2007-09-11 22:05:54 +02:00
|
|
|
|
2007-08-11 12:34:07 +02:00
|
|
|
logicalOR = x: y: x || y;
|
|
|
|
logicalAND = x: y: x && y;
|
|
|
|
|
2007-09-11 22:05:54 +02:00
|
|
|
|
2007-08-11 12:34:07 +02:00
|
|
|
# Input : attrSet, [ [name default] ... ], name
|
|
|
|
# Output : its value or default.
|
|
|
|
getValue = attrSet: argList: name:
|
2007-08-15 22:54:11 +02:00
|
|
|
( getAttr [name] (if checkFlag attrSet name then true else
|
|
|
|
if argList == [] then null else
|
2007-08-11 12:34:07 +02:00
|
|
|
let x = builtins.head argList; in
|
|
|
|
if (head x) == name then
|
|
|
|
(head (tail x))
|
|
|
|
else (getValue attrSet
|
|
|
|
(tail argList) name)) attrSet );
|
|
|
|
|
2007-09-11 22:05:54 +02:00
|
|
|
|
2007-08-11 12:34:07 +02:00
|
|
|
# Input : attrSet, [[name default] ...], [ [flagname reqs..] ... ]
|
|
|
|
# Output : are reqs satisfied? It's asserted.
|
|
|
|
checkReqs = attrSet : argList : condList :
|
|
|
|
(
|
|
|
|
fold logicalAND true
|
|
|
|
(map (x: let name = (head x) ; in
|
|
|
|
|
|
|
|
((checkFlag attrSet name) ->
|
|
|
|
(fold logicalAND true
|
|
|
|
(map (y: let val=(getValue attrSet argList y); in
|
|
|
|
(val!=null) && (val!=false))
|
|
|
|
(tail x))))) condList)) ;
|
|
|
|
|
|
|
|
|
|
|
|
isInList = list: x:
|
|
|
|
if (list == []) then false else
|
|
|
|
if (x == (head list)) then true else
|
|
|
|
isInList (tail list) x;
|
2007-09-11 22:05:54 +02:00
|
|
|
|
|
|
|
|
2007-08-11 13:14:36 +02:00
|
|
|
uniqList = {inputList, outputList ? []}:
|
|
|
|
if (inputList == []) then outputList else
|
|
|
|
let x=head inputList;
|
|
|
|
newOutputList = outputList ++
|
|
|
|
(if (isInList outputList x) then [] else [x]);
|
|
|
|
in uniqList {outputList=newOutputList;
|
|
|
|
inputList = (tail inputList);};
|
|
|
|
|
2008-01-11 17:58:55 +01:00
|
|
|
uniqListExt = {inputList, outputList ? [],
|
|
|
|
getter ? (x : x), compare ? (x: y: x==y)}:
|
|
|
|
if (inputList == []) then outputList else
|
|
|
|
let x=head inputList;
|
|
|
|
isX = y: (compare (getter y) (getter x));
|
|
|
|
newOutputList = outputList ++
|
|
|
|
(if any isX outputList then [] else [x]);
|
|
|
|
in uniqListExt {outputList=newOutputList;
|
|
|
|
inputList = (tail inputList);
|
|
|
|
inherit getter compare;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-09-11 22:05:54 +02:00
|
|
|
|
2007-08-15 23:17:11 +02:00
|
|
|
condConcat = name: list: checker:
|
|
|
|
if list == [] then name else
|
|
|
|
if checker (head list) then
|
|
|
|
condConcat
|
|
|
|
(name + (head (tail list)))
|
|
|
|
(tail (tail list))
|
|
|
|
checker
|
|
|
|
else condConcat
|
|
|
|
name (tail (tail list)) checker;
|
2008-08-05 19:16:35 +02:00
|
|
|
|
|
|
|
# Merge sets of attributes and use the function f to merge
|
|
|
|
# attributes values.
|
|
|
|
zip = f: sets:
|
|
|
|
builtins.listToAttrs (map (name: {
|
|
|
|
inherit name;
|
|
|
|
value =
|
|
|
|
f name
|
|
|
|
(map (__getAttr name)
|
|
|
|
(filter (__hasAttr name) sets));
|
|
|
|
}) (concatMap builtins.attrNames sets));
|
|
|
|
|
|
|
|
# divide a list in two depending on the evaluation of a predicate.
|
|
|
|
partition = pred:
|
|
|
|
fold (h: t:
|
|
|
|
if pred h
|
|
|
|
then { right = [h] ++ t.right; wrong = t.wrong; }
|
|
|
|
else { right = t.right; wrong = [h] ++ t.wrong; }
|
|
|
|
) { right = []; wrong = []; };
|
|
|
|
|
|
|
|
# Take a function and evaluate it with its own returned value.
|
2008-08-27 15:58:36 +02:00
|
|
|
fix = f:
|
2008-08-05 19:16:35 +02:00
|
|
|
(rec { result = f result; }).result;
|
|
|
|
|
2008-12-03 19:56:00 +01:00
|
|
|
# flatten a list of elements by following the properties of the elements.
|
|
|
|
# next : return the list of following elements.
|
2009-01-25 01:31:29 +01:00
|
|
|
# seen : lists of elements already visited.
|
2008-08-05 19:16:35 +02:00
|
|
|
# default: result if 'x' is empty.
|
|
|
|
# x : list of values that have to be processed.
|
2009-01-25 01:31:29 +01:00
|
|
|
uniqFlatten = next: seen: default: x:
|
2008-08-05 19:16:35 +02:00
|
|
|
if x == []
|
|
|
|
then default
|
2008-11-23 01:19:18 +01:00
|
|
|
else
|
2009-01-25 01:31:29 +01:00
|
|
|
let h = head x; t = tail x; n = next h; in
|
|
|
|
if elem h seen
|
|
|
|
then uniqFlatten next seen default t
|
|
|
|
else uniqFlatten next (seen ++ [h]) (default ++ [h]) (n ++ t)
|
2008-08-05 19:16:35 +02:00
|
|
|
;
|
|
|
|
|
2008-11-23 01:19:18 +01:00
|
|
|
/* If. ThenElse. Always. */
|
|
|
|
|
|
|
|
# create "if" statement that can be dealyed on sets until a "then-else" or
|
2008-12-03 19:56:00 +01:00
|
|
|
# "always" set is reached. When an always set is reached the condition
|
|
|
|
# is ignore.
|
2008-11-23 01:19:18 +01:00
|
|
|
|
|
|
|
isIf = attrs: (typeOf attrs) == "if";
|
|
|
|
mkIf = condition: thenelse:
|
|
|
|
if isIf thenelse then
|
|
|
|
mkIf (condition && thenelse.condition) thenelse.thenelse
|
|
|
|
else {
|
|
|
|
_type = "if";
|
|
|
|
inherit condition thenelse;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
isThenElse = attrs: (typeOf attrs) == "then-else";
|
|
|
|
mkThenElse = attrs:
|
|
|
|
assert attrs ? thenPart && attrs ? elsePart;
|
|
|
|
attrs // { _type = "then-else"; };
|
|
|
|
|
|
|
|
|
|
|
|
isAlways = attrs: (typeOf attrs) == "always";
|
|
|
|
mkAlways = value: { inherit value; _type = "always"; };
|
|
|
|
|
|
|
|
pushIf = f: attrs:
|
|
|
|
if isIf attrs then pushIf f (
|
|
|
|
let val = attrs.thenelse; in
|
|
|
|
# evaluate the condition.
|
|
|
|
if isThenElse val then
|
|
|
|
if attrs.condition then
|
|
|
|
val.thenPart
|
|
|
|
else
|
|
|
|
val.elsePart
|
|
|
|
# ignore the condition.
|
|
|
|
else if isAlways val then
|
|
|
|
val.value
|
|
|
|
# otherwise
|
|
|
|
else
|
|
|
|
f attrs.condition val)
|
|
|
|
else
|
|
|
|
attrs;
|
|
|
|
|
|
|
|
# take care otherwise you will have to handle this by hand.
|
|
|
|
rmIf = pushIf (condition: val: val);
|
|
|
|
|
|
|
|
evalIf = pushIf (condition: val:
|
|
|
|
# guess: empty else part.
|
|
|
|
ifEnable condition val
|
|
|
|
);
|
|
|
|
|
|
|
|
delayIf = pushIf (condition: val:
|
|
|
|
# rewrite the condition on sub-attributes.
|
|
|
|
mapAttrs (name: mkIf condition) val
|
|
|
|
);
|
|
|
|
|
2007-11-09 19:05:32 +01:00
|
|
|
/* Options. */
|
2008-08-05 19:16:35 +02:00
|
|
|
|
2007-11-09 19:05:32 +01:00
|
|
|
mkOption = attrs: attrs // {_type = "option";};
|
|
|
|
|
2008-10-26 18:44:23 +01:00
|
|
|
typeOf = x: if (__isAttrs x && x ? _type) then x._type else "";
|
2007-11-09 19:05:32 +01:00
|
|
|
|
2008-10-26 18:44:23 +01:00
|
|
|
isOption = attrs: (typeOf attrs) == "option";
|
2008-08-05 19:16:35 +02:00
|
|
|
|
2007-11-09 19:07:14 +01:00
|
|
|
addDefaultOptionValues = defs: opts: opts //
|
2007-11-09 19:05:32 +01:00
|
|
|
builtins.listToAttrs (map (defName:
|
|
|
|
{ name = defName;
|
|
|
|
value =
|
|
|
|
let
|
|
|
|
defValue = builtins.getAttr defName defs;
|
|
|
|
optValue = builtins.getAttr defName opts;
|
|
|
|
in
|
|
|
|
if typeOf defValue == "option"
|
|
|
|
then
|
|
|
|
# `defValue' is an option.
|
|
|
|
if builtins.hasAttr defName opts
|
|
|
|
then builtins.getAttr defName opts
|
|
|
|
else defValue.default
|
|
|
|
else
|
|
|
|
# `defValue' is an attribute set containing options.
|
|
|
|
# So recurse.
|
|
|
|
if builtins.hasAttr defName opts && builtins.isAttrs optValue
|
2007-11-09 19:07:14 +01:00
|
|
|
then addDefaultOptionValues defValue optValue
|
|
|
|
else addDefaultOptionValues defValue {};
|
2007-11-09 19:05:32 +01:00
|
|
|
}
|
|
|
|
) (builtins.attrNames defs));
|
2008-08-05 19:16:35 +02:00
|
|
|
|
|
|
|
mergeDefaultOption = name: list:
|
|
|
|
if list != [] && tail list == [] then head list
|
|
|
|
else if all __isFunction list then x: mergeDefaultOption (map (f: f x) list)
|
|
|
|
else if all __isList list then concatLists list
|
|
|
|
else if all __isAttrs list then mergeAttrs list
|
2008-11-23 01:19:12 +01:00
|
|
|
else if all (x: true == x || false == x) list then fold logicalOR false list
|
2009-01-09 00:04:18 +01:00
|
|
|
else if all (x: x == toString x) list then concatStrings list
|
2009-01-25 01:31:23 +01:00
|
|
|
else throw "Cannot merge values.";
|
2008-08-05 19:16:35 +02:00
|
|
|
|
2008-11-16 20:23:00 +01:00
|
|
|
mergeTypedOption = typeName: predicate: merge: name: list:
|
|
|
|
if all predicate list then merge list
|
2009-01-25 01:31:23 +01:00
|
|
|
else throw "Expect a ${typeName}.";
|
2008-11-16 20:23:00 +01:00
|
|
|
|
|
|
|
mergeEnableOption = mergeTypedOption "boolean"
|
|
|
|
(x: true == x || false == x) (fold logicalOR false);
|
|
|
|
|
|
|
|
mergeListOption = mergeTypedOption "list"
|
|
|
|
__isList concatLists;
|
|
|
|
|
|
|
|
mergeStringOption = mergeTypedOption "string"
|
|
|
|
(x: if builtins ? isString then builtins.isString x else x + "")
|
|
|
|
concatStrings;
|
2008-08-05 19:16:35 +02:00
|
|
|
|
|
|
|
|
2009-01-25 01:31:23 +01:00
|
|
|
# Handle the traversal of option sets. All sets inside 'opts' are zipped
|
|
|
|
# and options declaration and definition are separated. If no option are
|
|
|
|
# declared at a specific depth, then the function recurse into the values.
|
|
|
|
# Other cases are handled by the optionHandler which contains two
|
|
|
|
# functions that are used to defined your goal.
|
|
|
|
# - export is a function which takes two arguments which are the option
|
|
|
|
# and the list of values.
|
|
|
|
# - notHandle is a function which takes the list of values are not handle
|
|
|
|
# by this function.
|
|
|
|
handleOptionSets = optionHandler@{export, notHandle, ...}: path: opts:
|
2008-08-05 19:16:35 +02:00
|
|
|
if all __isAttrs opts then
|
|
|
|
zip (attr: opts:
|
|
|
|
let
|
|
|
|
name = if path == "" then attr else path + "." + attr;
|
|
|
|
test = partition isOption opts;
|
2009-01-25 01:31:23 +01:00
|
|
|
opt = {
|
|
|
|
inherit name;
|
|
|
|
merge = mergeDefaultOption;
|
|
|
|
apply = id;
|
|
|
|
} // (head test.right);
|
2008-08-05 19:16:35 +02:00
|
|
|
in
|
2009-01-25 01:31:23 +01:00
|
|
|
if test.right == [] then handleOptionSets optionHandler name (map delayIf test.wrong)
|
|
|
|
else addLocation "while evaluating the option ${name}:" (
|
|
|
|
if tail test.right != [] then throw "Multiple options."
|
|
|
|
else export opt (map evalIf test.wrong)
|
|
|
|
)
|
2008-08-05 19:16:35 +02:00
|
|
|
) opts
|
2009-01-25 01:31:23 +01:00
|
|
|
else addLocation "while evaluating ${path}:" (notHandle opts);
|
|
|
|
|
|
|
|
# Merge option sets and produce a set of values which is the merging of
|
|
|
|
# all options declare and defined. If no values are defined for an
|
|
|
|
# option, then the default value is used otherwise it use the merge
|
|
|
|
# function of each option to get the result.
|
|
|
|
mergeOptionSets = noOption: newMergeOptionSets; # ignore argument
|
|
|
|
newMergeOptionSets =
|
|
|
|
handleOptionSets {
|
|
|
|
export = opt: values:
|
|
|
|
opt.apply (
|
|
|
|
if values == [] then
|
|
|
|
if opt ? default then opt.default
|
|
|
|
else throw "Not defined."
|
|
|
|
else opt.merge (opt.name) values
|
|
|
|
);
|
|
|
|
notHandle = throw "Used without option declaration.";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Keep all option declarations.
|
|
|
|
filterOptionSets =
|
|
|
|
handleOptionSets {
|
|
|
|
export = opt: values: opt;
|
|
|
|
notHandle = {};
|
|
|
|
};
|
2008-08-05 19:16:35 +02:00
|
|
|
|
|
|
|
# Evaluate a list of option sets that would be merged with the
|
|
|
|
# function "merge" which expects two arguments. The attribute named
|
|
|
|
# "require" is used to imports option declarations and bindings.
|
2009-01-25 01:31:29 +01:00
|
|
|
#
|
|
|
|
# * cfg[0-9]: configuration
|
|
|
|
# * cfgSet[0-9]: configuration set
|
|
|
|
#
|
|
|
|
# merge: the function used to merge options sets.
|
|
|
|
# pkgs: is the set of packages available. (nixpkgs)
|
|
|
|
# opts: list of option sets or option set functions.
|
|
|
|
# config: result of this evaluation.
|
|
|
|
fixOptionSetsFun = merge: pkgs: opts: config:
|
2008-11-23 01:19:18 +01:00
|
|
|
let
|
2009-01-25 01:31:29 +01:00
|
|
|
# remove possible mkIf to access the require attribute.
|
|
|
|
noImportConditions = cfgSet0:
|
|
|
|
let cfgSet1 = delayIf cfgSet0; in
|
|
|
|
if cfgSet1 ? require then
|
|
|
|
cfgSet1 // { require = rmIf cfgSet1.require; }
|
2008-11-23 01:19:18 +01:00
|
|
|
else
|
2009-01-25 01:31:29 +01:00
|
|
|
cfgSet1;
|
2008-11-23 01:19:18 +01:00
|
|
|
|
|
|
|
# call configuration "files" with one of the existing convention.
|
2009-01-25 01:31:29 +01:00
|
|
|
argumentHandler = cfg:
|
|
|
|
let
|
|
|
|
# {..}
|
|
|
|
cfg0 = cfg;
|
|
|
|
# {pkgs, config, ...}: {..}
|
|
|
|
cfg1 = cfg { inherit pkgs config merge; };
|
|
|
|
# pkgs: config: {..}
|
|
|
|
cfg2 = cfg {} {};
|
|
|
|
in
|
|
|
|
if __isFunction cfg0 then
|
|
|
|
if builtins.isAttrs cfg1 then cfg1
|
|
|
|
else builtins.trace "Use '{pkgs, config, ...}:'." cfg2
|
|
|
|
else cfg0;
|
|
|
|
|
|
|
|
preprocess = cfg0:
|
|
|
|
let cfg1 = argumentHandler cfg0;
|
|
|
|
cfg2 = noImportConditions cfg1;
|
|
|
|
in cfg2;
|
|
|
|
|
|
|
|
getRequire = x: toList (getAttr ["require"] [] (preprocess x));
|
|
|
|
rmRequire = x: removeAttrs (preprocess x) ["require"];
|
|
|
|
in
|
|
|
|
merge "" (
|
|
|
|
map rmRequire (
|
|
|
|
uniqFlatten getRequire [] [] (toList opts)
|
|
|
|
)
|
|
|
|
);
|
2008-08-06 20:34:11 +02:00
|
|
|
|
2008-08-27 15:58:36 +02:00
|
|
|
fixOptionSets = merge: pkgs: opts:
|
|
|
|
fix (fixOptionSetsFun merge pkgs opts);
|
|
|
|
|
2007-11-11 10:27:52 +01:00
|
|
|
optionAttrSetToDocList = (l: attrs:
|
|
|
|
(if (getAttr ["_type"] "" attrs) == "option" then
|
|
|
|
[({
|
2008-08-27 23:19:03 +02:00
|
|
|
#inherit (attrs) description;
|
|
|
|
description = if attrs ? description then attrs.description else
|
2008-08-27 23:23:49 +02:00
|
|
|
throw ("No description ${toString l} : ${whatis attrs}");
|
2007-11-11 10:27:52 +01:00
|
|
|
}
|
|
|
|
//(if attrs ? example then {inherit(attrs) example;} else {} )
|
|
|
|
//(if attrs ? default then {inherit(attrs) default;} else {} )
|
|
|
|
//{name = l;}
|
|
|
|
)]
|
|
|
|
else (concatLists (map (s: (optionAttrSetToDocList
|
|
|
|
(l + (if l=="" then "" else ".") + s) (builtins.getAttr s attrs)))
|
|
|
|
(builtins.attrNames attrs)))));
|
2007-11-09 19:05:32 +01:00
|
|
|
|
2007-11-12 17:42:13 +01:00
|
|
|
innerModifySumArgs = f: x: a: b: if b == null then (f a b) // x else
|
|
|
|
innerModifySumArgs f x (a // b);
|
|
|
|
modifySumArgs = f: x: innerModifySumArgs f x {};
|
|
|
|
|
2009-01-25 01:31:23 +01:00
|
|
|
addLocation = if builtins ? addLocation then builtins.addLocation else msg: val: val;
|
|
|
|
|
2007-11-22 21:26:00 +01:00
|
|
|
debugVal = if builtins ? trace then x: (builtins.trace x x) else x: x;
|
|
|
|
debugXMLVal = if builtins ? trace then x: (builtins.trace (builtins.toXML x) x) else x: x;
|
|
|
|
|
2008-02-13 11:09:29 +01:00
|
|
|
# this can help debug your code as well - designed to not produce thousands of lines
|
|
|
|
traceWhatis = x : __trace (whatis x) x;
|
2008-08-20 10:21:54 +02:00
|
|
|
traceMarked = str: x: __trace (str + (whatis x)) x;
|
2008-12-02 13:26:12 +01:00
|
|
|
attrNamesToStr = a : concatStringsSep "; " (map (x : "${x}=") (__attrNames a));
|
|
|
|
whatis = x :
|
2008-02-13 11:09:29 +01:00
|
|
|
if (__isAttrs x) then
|
2008-12-02 13:26:12 +01:00
|
|
|
if (x ? outPath) then "x is a derivation, name ${if x ? name then x.name else "<no name>"}, { ${attrNamesToStr x} }"
|
|
|
|
else "x is attr set { ${attrNamesToStr x} }"
|
2008-02-13 11:09:29 +01:00
|
|
|
else if (__isFunction x) then "x is a function"
|
2008-06-12 08:58:07 +02:00
|
|
|
else if (x == []) then "x is an empty list"
|
2008-02-13 11:09:29 +01:00
|
|
|
else if (__isList x) then "x is a list, first item is : ${whatis (__head x)}"
|
2008-08-20 10:41:53 +02:00
|
|
|
else if (x == true) then "x is boolean true"
|
|
|
|
else if (x == false) then "x is boolean false"
|
2008-08-20 06:34:28 +02:00
|
|
|
else if (x == null) then "x is null"
|
2008-03-02 15:26:40 +01:00
|
|
|
else "x is probably a string starting, starting characters: ${__substring 0 50 x}..";
|
2008-12-02 13:26:05 +01:00
|
|
|
# trace the arguments passed to function and its result
|
|
|
|
traceCall = n : f : a : let t = n2 : x : traceMarked "${n} ${n2}:" x; in t "result" (f (t "arg 1" a));
|
|
|
|
traceCall2 = n : f : a : b : let t = n2 : x : traceMarked "${n} ${n2}:" x; in t "result" (f (t "arg 1" a) (t "arg 2" b));
|
|
|
|
traceCall3 = n : f : a : b : c : let t = n2 : x : traceMarked "${n} ${n2}:" x; in t "result" (f (t "arg 1" a) (t "arg 2" b) (t "arg 3" c));
|
|
|
|
|
2008-02-13 11:09:29 +01:00
|
|
|
|
|
|
|
|
2007-12-01 17:20:23 +01:00
|
|
|
innerClosePropagation = ready: list: if list == [] then ready else
|
|
|
|
if (head list) ? propagatedBuildInputs then
|
|
|
|
innerClosePropagation (ready ++ [(head list)])
|
|
|
|
((head list).propagatedBuildInputs ++ (tail list)) else
|
|
|
|
innerClosePropagation (ready ++ [(head list)]) (tail list);
|
|
|
|
|
|
|
|
closePropagation = list: (uniqList {inputList = (innerClosePropagation [] list);});
|
|
|
|
|
2008-02-13 11:09:29 +01:00
|
|
|
stringToCharacters = s : let l = __stringLength s; in
|
|
|
|
if (__lessThan l 1) then [""] else [(__substring 0 1 s)] ++ stringToCharacters (__substring 1 (__sub l 1) s);
|
|
|
|
|
|
|
|
# should this be implemented as primop ? Yes it should..
|
|
|
|
escapeShellArg = s :
|
|
|
|
let escapeChar = x : if ( x == "'" ) then "'\"'\"'" else x;
|
|
|
|
in "'" + concatStrings (map escapeChar (stringToCharacters s) ) +"'";
|
|
|
|
|
|
|
|
defineShList = name : list : "\n${name}=(${concatStringsSep " " (map escapeShellArg list)})\n";
|
|
|
|
|
2008-10-14 16:01:00 +02:00
|
|
|
# this as well :-) arg: http://foo/bar/bz.ext returns bz.ext
|
|
|
|
dropPath = s :
|
|
|
|
if s == "" then "" else
|
|
|
|
let takeTillSlash = left : c : s :
|
|
|
|
if left == 0 then s
|
|
|
|
else if (__substring left 1 s == "/") then
|
|
|
|
(__substring (__add left 1) (__sub c 1) s)
|
|
|
|
else takeTillSlash (__sub left 1) (__add c 1) s; in
|
|
|
|
takeTillSlash (__sub (__stringLength s) 1) 1 s;
|
|
|
|
|
2008-01-16 04:29:56 +01:00
|
|
|
# calls a function (f attr value ) for each record item. returns a list
|
2008-12-02 13:26:28 +01:00
|
|
|
# should be renamed to mapAttrsFlatten
|
2008-01-16 04:29:56 +01:00
|
|
|
mapRecordFlatten = f : r : map (attr: f attr (builtins.getAttr attr r) ) (attrNames r);
|
|
|
|
|
2008-04-11 02:40:10 +02:00
|
|
|
# maps a function on each attr value
|
2008-08-17 02:06:01 +02:00
|
|
|
# f = attr : value : ..
|
2008-08-17 09:40:35 +02:00
|
|
|
mapAttrs = f : r : listToAttrs ( mapRecordFlatten (a : v : nv a ( f a v ) ) r);
|
2008-04-11 02:40:10 +02:00
|
|
|
|
2008-01-16 04:29:56 +01:00
|
|
|
# to be used with listToAttrs (_a_ttribute _v_alue)
|
2008-01-17 12:08:24 +01:00
|
|
|
nv = name : value : { inherit name value; };
|
2008-01-16 04:29:56 +01:00
|
|
|
# attribute set containing one attribute
|
2008-01-17 12:08:24 +01:00
|
|
|
nvs = name : value : listToAttrs [ (nv name value) ];
|
2008-01-16 04:29:56 +01:00
|
|
|
# adds / replaces an attribute of an attribute set
|
2008-01-17 12:08:24 +01:00
|
|
|
setAttr = set : name : v : set // (nvs name v);
|
2008-01-16 04:29:56 +01:00
|
|
|
|
2008-11-04 22:40:51 +01:00
|
|
|
# setAttrMerge (similar to mergeAttrsWithFunc but only merges the values of a particular name)
|
|
|
|
# setAttrMerge "a" [] { a = [2];} (x : x ++ [3]) -> { a = [2 3]; }
|
|
|
|
# setAttrMerge "a" [] { } (x : x ++ [3]) -> { a = [ 3]; }
|
|
|
|
setAttrMerge = name : default : attrs : f :
|
|
|
|
setAttr attrs name (f (maybeAttr name default attrs));
|
|
|
|
|
2008-01-16 04:29:56 +01:00
|
|
|
# iterates over a list of attributes collecting the attribute attr if it exists
|
|
|
|
catAttrs = attr : l : fold ( s : l : if (hasAttr attr s) then [(builtins.getAttr attr s)] ++ l else l) [] l;
|
|
|
|
|
2008-12-02 13:26:20 +01:00
|
|
|
mergeAttr = x : y : x // y;
|
|
|
|
mergeAttrs = fold mergeAttr {};
|
2008-01-16 04:29:56 +01:00
|
|
|
|
2008-08-09 22:21:33 +02:00
|
|
|
attrVals = nameList : attrSet :
|
|
|
|
map (x: builtins.getAttr x attrSet) nameList;
|
|
|
|
|
2008-01-16 04:29:56 +01:00
|
|
|
# Using f = a : b = b the result is similar to //
|
|
|
|
# merge attributes with custom function handling the case that the attribute
|
|
|
|
# exists in both sets
|
|
|
|
mergeAttrsWithFunc = f : set1 : set2 :
|
|
|
|
fold (n: set : if (__hasAttr n set)
|
|
|
|
then setAttr set n (f (__getAttr n set) (__getAttr n set2))
|
|
|
|
else set )
|
|
|
|
set1 (__attrNames set2);
|
|
|
|
|
|
|
|
# merging two attribute set concatenating the values of same attribute names
|
|
|
|
# eg { a = 7; } { a = [ 2 3 ]; } becomes { a = [ 7 2 3 ]; }
|
|
|
|
mergeAttrsConcatenateValues = mergeAttrsWithFunc ( a : b : (toList a) ++ (toList b) );
|
|
|
|
|
2008-04-29 00:27:03 +02:00
|
|
|
# merges attributes using //, if a name exisits in both attributes
|
|
|
|
# an error will be triggered unless its listed in mergeLists
|
|
|
|
# so you can mergeAttrsNoOverride { buildInputs = [a]; } { buildInputs = [a]; } {} to get
|
|
|
|
# { buildInputs = [a b]; }
|
|
|
|
# merging buildPhase does'nt really make sense. The cases will be rare where appending /prefixing will fit your needs?
|
|
|
|
# in these cases the first buildPhase will override the second one
|
2008-12-02 13:26:28 +01:00
|
|
|
# ! depreceated, use mergeAttrByFunc instead
|
2008-04-29 00:27:03 +02:00
|
|
|
mergeAttrsNoOverride = { mergeLists ? ["buildInputs" "propagatedBuildInputs"],
|
|
|
|
overrideSnd ? [ "buildPhase" ]
|
|
|
|
} : attrs1 : attrs2 :
|
|
|
|
fold (n: set :
|
|
|
|
setAttr set n ( if (__hasAttr n set)
|
|
|
|
then # merge
|
|
|
|
if elem n mergeLists # attribute contains list, merge them by concatenating
|
|
|
|
then (__getAttr n attrs2) ++ (__getAttr n attrs1)
|
|
|
|
else if elem n overrideSnd
|
|
|
|
then __getAttr n attrs1
|
|
|
|
else throw "error mergeAttrsNoOverride, attribute ${n} given in both attributes - no merge func defined"
|
|
|
|
else __getAttr n attrs2 # add attribute not existing in attr1
|
|
|
|
)) attrs1 (__attrNames attrs2);
|
2008-12-02 13:26:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
# example usage:
|
|
|
|
# mergeAttrByFunc {
|
|
|
|
# inherit mergeAttrBy; # defined below
|
|
|
|
# buildInputs = [ a b ];
|
|
|
|
# } {
|
|
|
|
# buildInputs = [ c d ];
|
|
|
|
# };
|
|
|
|
# will result in
|
|
|
|
# { mergeAttrsBy = [...]; buildInputs = [ a b c d ]; }
|
|
|
|
# is used by prepareDerivationArgs and can be used when composing using
|
|
|
|
# foldArgs, composedArgsAndFun or applyAndFun. Example: composableDerivation in all-packages.nix
|
|
|
|
mergeAttrByFunc = x : y :
|
|
|
|
let
|
|
|
|
mergeAttrBy2 = { mergeAttrBy=mergeAttr; }
|
|
|
|
// (maybeAttr "mergeAttrBy" {} x)
|
|
|
|
// (maybeAttr "mergeAttrBy" {} y); in
|
|
|
|
mergeAttrs [
|
|
|
|
x y
|
|
|
|
(mapAttrs ( a : v : # merge special names using given functions
|
|
|
|
if (__hasAttr a x)
|
|
|
|
then if (__hasAttr a y)
|
|
|
|
then v (__getAttr a x) (__getAttr a y) # both have attr, use merge func
|
|
|
|
else (__getAttr a x) # only x has attr
|
|
|
|
else (__getAttr a y) # only y has attr)
|
|
|
|
) (removeAttrs mergeAttrBy2
|
|
|
|
# don't merge attrs which are neither in x nor y
|
|
|
|
(filter (a : (! __hasAttr a x) && (! __hasAttr a y) )
|
|
|
|
(__attrNames mergeAttrBy2))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
];
|
2008-12-02 13:28:45 +01:00
|
|
|
mergeAttrsByFuncDefaults = foldl mergeAttrByFunc { inherit mergeAttrBy; };
|
2008-12-02 13:26:36 +01:00
|
|
|
# sane defaults (same name as attr name so that inherit can be used)
|
|
|
|
mergeAttrBy = # { buildInputs = concatList; [...]; passthru = mergeAttr; [..]; }
|
|
|
|
listToAttrs (map (n : nv n concatList) [ "buildInputs" "propagatedBuildInputs" "configureFlags" "prePhases" "postAll" ])
|
2008-12-02 13:28:45 +01:00
|
|
|
// listToAttrs (map (n : nv n mergeAttr) [ "passthru" "meta" "cfg" "flags" ]);
|
2008-12-02 13:26:36 +01:00
|
|
|
|
2008-01-16 04:29:56 +01:00
|
|
|
# returns atribute values as a list
|
|
|
|
flattenAttrs = set : map ( attr : builtins.getAttr attr set) (attrNames set);
|
|
|
|
mapIf = cond : f : fold ( x : l : if (cond x) then [(f x)] ++ l else l) [];
|
|
|
|
|
2008-02-13 11:09:29 +01:00
|
|
|
# pick attrs subset_attr_names and apply f
|
|
|
|
subsetmap = f : attrs : subset_attr_names :
|
|
|
|
listToAttrs (fold ( attr : r : if __hasAttr attr attrs
|
|
|
|
then r ++ [ ( nv attr ( f (__getAttr attr attrs) ) ) ] else r ) []
|
|
|
|
subset_attr_names );
|
|
|
|
|
2008-12-02 13:26:43 +01:00
|
|
|
# prepareDerivationArgs tries to make writing configurable derivations easier
|
|
|
|
# example:
|
|
|
|
# prepareDerivationArgs {
|
|
|
|
# mergeAttrBy = {
|
|
|
|
# myScript = x : y : x ++ "\n" ++ y;
|
|
|
|
# };
|
|
|
|
# cfg = {
|
|
|
|
# readlineSupport = true;
|
|
|
|
# };
|
|
|
|
# flags = {
|
|
|
|
# readline = {
|
|
|
|
# set = {
|
|
|
|
# configureFlags = [ "--with-compiler=${compiler}" ];
|
|
|
|
# buildInputs = [ compiler ];
|
|
|
|
# pass = { inherit compiler; READLINE=1; };
|
|
|
|
# assertion = compiler.dllSupport;
|
|
|
|
# myScript = "foo";
|
|
|
|
# };
|
|
|
|
# unset = { configureFlags = ["--without-compiler"]; };
|
|
|
|
# };
|
|
|
|
# };
|
|
|
|
# src = ...
|
|
|
|
# buildPhase = '' ... '';
|
|
|
|
# name = ...
|
|
|
|
# myScript = "bar";
|
|
|
|
# };
|
|
|
|
# if you don't have need for unset you can omit the surrounding set = { .. } attr
|
|
|
|
# all attrs except flags cfg and mergeAttrBy will be merged with the
|
|
|
|
# additional data from flags depending on config settings
|
|
|
|
# It's used in composableDerivation in all-packages.nix. It's also used
|
|
|
|
# heavily in the new python and libs implementation
|
2008-12-02 13:28:45 +01:00
|
|
|
#
|
|
|
|
# should we check for misspelled cfg options?
|
2008-12-02 13:26:43 +01:00
|
|
|
prepareDerivationArgs = args:
|
|
|
|
let args2 = { cfg = {}; flags = {}; } // args;
|
|
|
|
flagName = name : "${name}Support";
|
|
|
|
cfgWithDefaults = (listToAttrs (map (n : nv (flagName n) false) (attrNames args2.flags)))
|
|
|
|
// args2.cfg;
|
|
|
|
opts = flattenAttrs (mapAttrs (a : v :
|
|
|
|
let v2 = if (v ? set || v ? unset) then v else { set = v; };
|
|
|
|
n = if (__getAttr (flagName a) cfgWithDefaults) then "set" else "unset";
|
|
|
|
attr = maybeAttr n {} v2; in
|
|
|
|
if (maybeAttr "assertion" true attr)
|
|
|
|
then attr
|
|
|
|
else throw "assertion of flag ${a} of derivation ${args.name} failed"
|
|
|
|
) args2.flags );
|
|
|
|
in removeAttrs
|
2008-12-20 03:15:26 +01:00
|
|
|
(mergeAttrsByFuncDefaults ([args] ++ opts ++ [{ passthru = cfgWithDefaults; }]))
|
2008-12-02 13:26:43 +01:00
|
|
|
["flags" "cfg" "mergeAttrBy" "fixed" ]; # fixed may be passed as fix argument or such
|
2008-01-16 04:29:56 +01:00
|
|
|
|
2006-11-27 17:58:08 +01:00
|
|
|
}
|