diff options
author | regnat <rg@regnat.ovh> | 2020-09-23 16:30:42 +0200 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2020-10-27 07:29:23 +0100 |
commit | c092fa4702215fdb61611c5dd28194401d056170 (patch) | |
tree | a9db7d344fb17377c02852b9a76e8716ba925b19 /src/nix/show-derivation.cc | |
parent | e0ca98c2071b815578470e280df8fdb750c7e23b (diff) |
Allow non-CA derivations to depend on CA derivations
Diffstat (limited to 'src/nix/show-derivation.cc')
-rw-r--r-- | src/nix/show-derivation.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nix/show-derivation.cc b/src/nix/show-derivation.cc index 2542537d3..6d4f295d7 100644 --- a/src/nix/show-derivation.cc +++ b/src/nix/show-derivation.cc @@ -82,6 +82,7 @@ struct CmdShowDerivation : InstallablesCommand [&](DerivationOutputCAFloating dof) { outputObj.attr("hashAlgo", makeFileIngestionPrefix(dof.method) + printHashType(dof.hashType)); }, + [&](DerivationOutputDeferred) {}, }, output.output); } } |