1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00

Fix error in merge breaking floating CA drvs

Forgot to add this hunk!
This commit is contained in:
John Ericson 2020-08-11 00:12:54 +00:00
parent 1b5c24662b
commit 2a0902634e

View file

@ -192,7 +192,7 @@ static DerivationOutput parseDerivationOutput(const Store & store,
static DerivationOutput parseDerivationOutput(const Store & store, std::istringstream & str)
{
expect(str, ","); const auto pathS = parsePath(str);
expect(str, ","); const auto pathS = parseString(str);
expect(str, ","); const auto hashAlgo = parseString(str);
expect(str, ","); const auto hash = parseString(str);
expect(str, ")");