Merge pull request #45 from nix-community/build-fix

fix build with nix 2.7
This commit is contained in:
Jörg Thalheim 2022-03-13 17:12:11 +00:00 committed by GitHub
commit eddea80690
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 10 deletions

View file

@ -17,16 +17,16 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1645433236,
"narHash": "sha256-4va4MvJ076XyPp5h8sm5eMQvCrJ6yZAbBmyw95dGyw4=",
"owner": "NixOS",
"lastModified": 1647186833,
"narHash": "sha256-62CMNrhICLcI/5jNSQDAQpUUvtvTXBsYWSU6ZlhPIzs=",
"owner": "Mic92",
"repo": "nixpkgs",
"rev": "7f9b6e2babf232412682c09e57ed666d8f84ac2d",
"rev": "de173cbbb66e9b454e0e836cec1b807856934539",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"owner": "Mic92",
"ref": "nix-unstable",
"repo": "nixpkgs",
"type": "github"
}

View file

@ -1,7 +1,9 @@
{
description = "Hydra's builtin hydra-eval-jobs as a standalone";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# switch back when https://github.com/NixOS/nixpkgs/pull/164012 is merged
#inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.nixpkgs.url = "github:Mic92/nixpkgs/nix-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:

View file

@ -142,7 +142,7 @@ static void worker(
callFlake(state, lockedFlake, *vFlake);
auto vOutputs = vFlake->attrs->get(state.symbols.create("outputs"))->value;
state.forceValue(*vOutputs);
state.forceValue(*vOutputs, noPos);
vTop = *vOutputs;
if (fragment.length() > 0) {
@ -186,8 +186,8 @@ static void worker(
if (drv->querySystem() == "unknown")
throw EvalError("derivation must have a 'system' attribute");
auto drvPath = drv->queryDrvPath();
auto localStore = state.store.dynamic_pointer_cast<LocalFSStore>();
auto drvPath = localStore->printStorePath(drv->requireDrvPath());
auto storePath = localStore->parseStorePath(drvPath);
auto outputs = drv->queryOutputs(false);
@ -195,7 +195,7 @@ static void worker(
reply["system"] = drv->querySystem();
reply["drvPath"] = drvPath;
for (auto out : outputs){
reply["outputs"][out.first] = out.second;
reply["outputs"][out.first] = localStore->printStorePath(out.second);
}
if (myArgs.meta) {