mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Fix error in merge breaking floating CA drvs
Forgot to add this hunk!
This commit is contained in:
parent
1b5c24662b
commit
2a0902634e
1 changed files with 1 additions and 1 deletions
|
@ -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, ")");
|
||||
|
|
Loading…
Reference in a new issue