about summary refs log tree commit diff
path: root/src/nix/path-info.cc (follow)
AgeCommit message (Collapse)AuthorFilesLines
2016-09-14 nix path-info: Add some more examplesEelco Dolstra1-1/+9
2016-08-30 Fix 32-bit buildEelco Dolstra1-5/+2
2016-08-29 nix path-info: Add --json flagEelco Dolstra1-22/+81
Also, factor out JSON generation from value-to-json.{cc,hh}, and support producing indented JSON.
2016-08-10 Mark content-addressed paths in the Nix database and in .narinfoEelco Dolstra1-0/+1
This allows such paths to be imported without signatures.
2016-04-25 Improved logging abstractionEelco Dolstra1-1/+0
This also gets rid of --log-type, since the nested log type isn't useful in a multi-threaded situation, and nobody cares about the "pretty" log type.
2016-04-22 Fold "nix query-path-sigs" into "nix path-info"Eelco Dolstra1-0/+10
2016-04-21 Implement S3BinaryCacheStore::queryAllValidPaths()Eelco Dolstra1-5/+6
This allows commands like "nix verify --all" or "nix path-info --all" to work on S3 caches. Unfortunately, this requires some ugly hackery: when querying the contents of the bucket, we don't want to have to read every .narinfo file. But the S3 bucket keys only include the hash part of each store path, not the name part. So as a special exception queryAllValidPaths() can now return store paths *without* the name part, and queryPathInfo() accepts such store paths (returning a ValidPathInfo object containing the full name).
2016-04-21 nix path-info: AddEelco Dolstra1-0/+75
Forgot to commit this earlier...