forked from lix-project/hydra
Pass a build's drv path as a store path
This commit is contained in:
parent
ce5ffa9fba
commit
882b6b3377
|
@ -288,7 +288,7 @@ sub buildInputToString {
|
||||||
(defined $input->{shortRev} ? "; shortRev = \"" . $input->{shortRev} . "\"" : "") .
|
(defined $input->{shortRev} ? "; shortRev = \"" . $input->{shortRev} . "\"" : "") .
|
||||||
(defined $input->{version} ? "; version = \"" . $input->{version} . "\"" : "") .
|
(defined $input->{version} ? "; version = \"" . $input->{version} . "\"" : "") .
|
||||||
(defined $input->{outputName} ? "; outputName = \"" . $input->{outputName} . "\"" : "") .
|
(defined $input->{outputName} ? "; outputName = \"" . $input->{outputName} . "\"" : "") .
|
||||||
(defined $input->{drvPath} ? "; drvPath = " . $input->{drvPath} . "" : "") .
|
(defined $input->{drvPath} ? "; drvPath = builtins.storePath " . $input->{drvPath} . "" : "") .
|
||||||
";}";
|
";}";
|
||||||
}
|
}
|
||||||
return $result;
|
return $result;
|
||||||
|
|
Loading…
Reference in a new issue