Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-04-15 | BinaryCacheStore: Do negative caching of .narinfo lookups | Eelco Dolstra | 1 | -2/+10 | |
2016-04-15 | BinaryCacheStore::readFile(): Return a shared_ptr to a string | Eelco Dolstra | 1 | -7/+12 | |
This allows readFile() to indicate that a file doesn't exist, and might eliminate some large string copying. | |||||
2016-03-22 | Don't overload dumpPath() | Eelco Dolstra | 1 | -3/+3 | |
2016-03-21 | Move signatures from NarInfo to ValidPathInfo | Eelco Dolstra | 1 | -2/+2 | |
This allows queryPathInfo() to return signatures. | |||||
2016-03-21 | Add Store::dumpPath() method | Eelco Dolstra | 1 | -4/+11 | |
This allows applying nix-store --verify-path to binary cache stores: NIX_REMOTE=https://cache.nixos.org nix-store --verify-path /nix/store/s5c7... | |||||
2016-03-14 | BinaryCacheStore::isValidPath(): Use .narinfo cache | Eelco Dolstra | 1 | -0/+9 | |
If a path is in the .narinfo cache, obviously it's valid. | |||||
2016-03-04 | BinaryCacheStore: Remove publicKeyFile argument | Eelco Dolstra | 1 | -6/+3 | |
The public key can be derived from the secret key, so there's no need for the user to supply it separately. | |||||
2016-03-04 | Eliminate some large string copying | Eelco Dolstra | 1 | -13/+13 | |
2016-02-26 | importPaths(): Optionally add NARs to binary cache accessor | Eelco Dolstra | 1 | -30/+36 | |
This enables an optimisation in hydra-queue-runner, preventing a download of a NAR it just uploaded to the cache when reading files like hydra-build-products. | |||||
2016-02-25 | Add NAR / Store accessor abstraction | Eelco Dolstra | 1 | -4/+76 | |
This is primary to allow hydra-queue-runner to extract files like "nix-support/hydra-build-products" from NARs in binary caches. | |||||
2016-02-24 | BinaryCacheStore: Implement addToStore() | Eelco Dolstra | 1 | -0/+50 | |
So now you can do $ NIX_REMOTE=file:///tmp/binary-cache nix-instantiate '<nixpkgs>' -A hello and lots of other operations. | |||||
2016-02-24 | Show a proper error message for unimplemented binary cache operations | Eelco Dolstra | 1 | -0/+5 | |
2016-02-24 | Move BinaryCacheStore / LocalBinaryCacheStore from Hydra | Eelco Dolstra | 1 | -0/+292 | |
So you can now do: $ NIX_REMOTE=file:///tmp/binary-cache nix-store -qR /nix/store/... |