diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-08-03 13:17:11 +0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-08-10 18:05:35 +0200 |
commit | d961c29c9c5e806ff7c46c855a1e9d2b6cae593b (patch) | |
tree | 7ee4768690c7520871fa7165025816b781be48d3 /src/nix/path-info.cc | |
parent | 36a51ecab3f107be113401fbd401c5a491c5afea (diff) |
Mark content-addressed paths in the Nix database and in .narinfo
This allows such paths to be imported without signatures.
Diffstat (limited to 'src/nix/path-info.cc')
-rw-r--r-- | src/nix/path-info.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nix/path-info.cc b/src/nix/path-info.cc index c61fe7ff1..dca22240b 100644 --- a/src/nix/path-info.cc +++ b/src/nix/path-info.cc @@ -73,6 +73,7 @@ struct CmdPathInfo : StorePathsCommand std::cout << '\t'; Strings ss; if (info->ultimate) ss.push_back("ultimate"); + if (info->ca != "") ss.push_back("ca:" + info->ca); for (auto & sig : info->sigs) ss.push_back(sig); std::cout << concatStringsSep(" ", ss); } |