Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-07-30 | Replace Unicode quotes in user-facing strings by ASCII | Jörg Thalheim | 1 | -1/+1 | |
Relevant RFC: NixOS/rfcs#4 $ ag -l | xargs sed -i -e "/\"/s/’/'/g;/\"/s/‘/'/g" | |||||
2017-07-04 | Support base-64 hashes | Eelco Dolstra | 1 | -3/+3 | |
Also simplify the Hash API. Fixes #1437. | |||||
2017-03-28 | Ignore broken "Deriver: unknown-deriver" fields in .narinfo | Eelco Dolstra | 1 | -3/+5 | |
These were generated by a legacy tool. | |||||
2016-11-26 | Revert "Get rid of unicode quotes (#1140)" | Eelco Dolstra | 1 | -1/+1 | |
This reverts commit f78126bfd6b6c8477fcdbc09b2f98772dbe9a1e7. There really is no need for such a massive change... | |||||
2016-11-25 | Get rid of unicode quotes (#1140) | Guillaume Maudoux | 1 | -1/+1 | |
2016-08-10 | Mark content-addressed paths in the Nix database and in .narinfo | Eelco Dolstra | 1 | -0/+7 | |
This allows such paths to be imported without signatures. | |||||
2016-07-21 | NarInfo::NarInfo(): Ensure that we get a NAR size/hash | Eelco Dolstra | 1 | -2/+2 | |
2016-06-01 | Make the store directory a member variable of Store | Eelco Dolstra | 1 | -6/+6 | |
2016-05-31 | Fix clang build failure | Eelco Dolstra | 1 | -1/+2 | |
Apparently opinion is divided on whether [[noreturn]] is allowed on a lambda: http://stackoverflow.com/questions/26888805/how-to-declare-a-lambdas-operator-as-noreturn http://hydra.nixos.org/build/36462100 | |||||
2016-04-20 | Cache path info lookups in SQLite | Eelco Dolstra | 1 | -14/+6 | |
This re-implements the binary cache database in C++, allowing it to be used by other Store backends, in particular the S3 backend. | |||||
2016-03-24 | Move signature support from NarInfo to ValidPathInfo | Eelco Dolstra | 1 | -24/+0 | |
2016-03-21 | Move signatures from NarInfo to ValidPathInfo | Eelco Dolstra | 1 | -5/+9 | |
This allows queryPathInfo() to return signatures. | |||||
2016-02-16 | Add C++ functions for .narinfo processing / signing | Eelco Dolstra | 1 | -0/+134 | |
This is currently only used by the Hydra queue runner rework, but like eff5021eaa6dc69f65ea1a8abe8f3ab11ef5eb0a it presumably will be useful for the C++ rewrite of nix-push and download-from-binary-cache. (@shlevy) |