|
|
@ -54,12 +54,12 @@ function parseDerivation(text) {
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
outputs: mapArray(root.items[0], (item) => {
|
|
|
|
outputs: mapArray(root.items[0], (item) => {
|
|
|
|
return mapTuple(item, ["name", "path", "hashAlgorithm", "hash"]);
|
|
|
|
return mapTuple(item, ["name", "path", "expectedHashAlgorithm", "expectedHash"]);
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
inputDerivations: mapArray(root.items[1], (item) => {
|
|
|
|
inputDerivations: mapArray(root.items[1], (item) => {
|
|
|
|
return mapTuple(item, ["path", "inputDerivations"], (value, i) => {
|
|
|
|
return mapTuple(item, ["path", "wantedOutputs"], (value, i) => {
|
|
|
|
if (i === 1) {
|
|
|
|
if (i === 1) {
|
|
|
|
/* An `array` of inputDerivations */
|
|
|
|
/* An `array` of outputs */
|
|
|
|
return value.items;
|
|
|
|
return value.items;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
return value;
|
|
|
|
return value;
|
|
|
|