Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-06-01 | HttpBinaryCacheStore: Fix caching of WantMassQuery | Eelco Dolstra | 1 | -7/+3 | |
Also, test HttpBinaryCacheStore in addition to LocalBinaryCacheStore. | |||||
2016-06-01 | Make the store directory a member variable of Store | Eelco Dolstra | 1 | -4/+4 | |
2016-05-30 | Test the NAR info cache | Eelco Dolstra | 1 | -0/+7 | |
2016-05-30 | BinaryCacheStore: Remove buildPaths() / ensurePath() | Eelco Dolstra | 1 | -4/+3 | |
2016-04-29 | nix verify --all: Support local binary caches | Eelco Dolstra | 1 | -0/+14 | |
2016-04-29 | BinaryCacheStore: Make the signing key a parameter | Eelco Dolstra | 1 | -20/+9 | |
2016-04-29 | Allow parameters in store URIs | Eelco Dolstra | 1 | -1/+9 | |
This is to allow store-specific configuration, e.g. s3://my-cache?compression=bzip2&secret-key=/path/to/key. | |||||
2016-04-15 | BinaryCacheStore::readFile(): Return a shared_ptr to a string | Eelco Dolstra | 1 | -3/+8 | |
This allows readFile() to indicate that a file doesn't exist, and might eliminate some large string copying. | |||||
2016-03-04 | Add option binary-cache-secret-key-file for signing binary caches | Eelco Dolstra | 1 | -1/+2 | |
2016-03-04 | BinaryCacheStore: Remove publicKeyFile argument | Eelco Dolstra | 1 | -11/+8 | |
The public key can be derived from the secret key, so there's no need for the user to supply it separately. | |||||
2016-03-02 | Provide function required by Hydra | Eelco Dolstra | 1 | -3/+11 | |
2016-03-02 | Eliminate local-binary-cache-store.hh | Eelco Dolstra | 1 | -1/+25 | |
2016-03-02 | Make store implementations pluggable | Eelco Dolstra | 1 | -0/+9 | |
This for instance allows hydra-queue-runner to add the S3 backend at runtime. | |||||
2016-02-24 | Move BinaryCacheStore / LocalBinaryCacheStore from Hydra | Eelco Dolstra | 1 | -0/+44 | |
So you can now do: $ NIX_REMOTE=file:///tmp/binary-cache nix-store -qR /nix/store/... |