forked from lix-project/lix
27 lines
480 B
Nix
27 lines
480 B
Nix
attrs@{
|
|
drvPath,
|
|
outputs,
|
|
name,
|
|
...
|
|
}:
|
|
|
|
let
|
|
|
|
commonAttrs = (builtins.listToAttrs outputsList) // {
|
|
all = map (x: x.value) outputsList;
|
|
inherit drvPath name;
|
|
type = "derivation";
|
|
};
|
|
|
|
outputToAttrListElement = outputName: {
|
|
name = outputName;
|
|
value = commonAttrs // {
|
|
outPath = builtins.getAttr outputName attrs;
|
|
inherit outputName;
|
|
};
|
|
};
|
|
|
|
outputsList = map outputToAttrListElement outputs;
|
|
in
|
|
(builtins.head outputsList).value
|