forked from lix-project/nix-eval-jobs
fix for nixUnstable
This commit is contained in:
parent
3094e12732
commit
c1b86245a1
|
@ -16,7 +16,9 @@
|
|||
checks =
|
||||
let
|
||||
mkVariant = nix: (packages.nix-eval-jobs.override {
|
||||
inherit nix;
|
||||
# TODO: fix to stable after next nix release
|
||||
nix = pkgs.nixUnstable;
|
||||
#inherit nix;
|
||||
}).overrideAttrs (_: {
|
||||
name = "nix-eval-jobs-${nix.version}";
|
||||
inherit (nix) version;
|
||||
|
@ -44,7 +46,9 @@
|
|||
touch $out
|
||||
'';
|
||||
|
||||
build = mkVariant pkgs.nix;
|
||||
# TODO fix to unstable in next release
|
||||
build = mkVariant pkgs.nixUnstable;
|
||||
#build = mkVariant pkgs.nix;
|
||||
build-unstable = mkVariant pkgs.nixUnstable;
|
||||
};
|
||||
|
||||
|
|
|
@ -217,7 +217,9 @@ static void worker(
|
|||
reply["system"] = drv->querySystem();
|
||||
reply["drvPath"] = drvPath;
|
||||
for (auto out : outputs){
|
||||
reply["outputs"][out.first] = localStore->printStorePath(out.second);
|
||||
if (out.second) {
|
||||
reply["outputs"][out.first] = localStore->printStorePath(*out.second);
|
||||
}
|
||||
}
|
||||
|
||||
if (myArgs.meta) {
|
||||
|
|
Loading…
Reference in a new issue