diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-10-27 17:38:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 17:38:29 +0100 |
commit | 02a1facbdc89c5041ba55387645484ad785cba7a (patch) | |
tree | 00f884b5db358882cc99ccecbdf5577f7c9703c4 /src/nix | |
parent | 731edf0d9be27d1a64c9645595c7efba31dde2b1 (diff) | |
parent | ab21ab65016275c224d1d40c42bdfed80dfbcbb0 (diff) |
Merge pull request #4056 from tweag/non-ca-depending-on-ca
Allow non-CA derivations to depend on CA ones
Diffstat (limited to 'src/nix')
-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); } } |