about summary refs log tree commit diff
path: root/src/libstore/download.hh (follow)
AgeCommit message (Collapse)AuthorFilesLines
2016-08-31 download.hh: Fix conflicts from nix-channel-c++ mergeShea Levy1-6/+1
2016-08-31 Merge branch 'nix-channel-c++'Shea Levy1-0/+6
2016-08-30 Increase the sleep time between download retriesEelco Dolstra1-0/+1
2016-08-15 builtins.fetch{url,tarball}: Allow name attributeShea Levy1-1/+1
2016-08-11 nix-channel: implement in c++Shea Levy1-0/+6
2016-08-10 HttpBinaryCacheStore: Retry on transient HTTP errorsEelco Dolstra1-5/+6
This makes us more robust against 500 errors from CloudFront or S3 (assuming the 500 error isn't cached by CloudFront...).
2016-07-26 builtins.{fetchurl,fetchTarball}: Support a sha256 attributeEelco Dolstra1-1/+3
Also, allow builtins.{fetchurl,fetchTarball} in restricted mode if a hash is specified.
2016-04-15 BinaryCacheStore::readFile(): Return a shared_ptr to a stringEelco Dolstra1-1/+2
This allows readFile() to indicate that a file doesn't exist, and might eliminate some large string copying.
2016-02-29 Add an HTTP binary cache storeEelco Dolstra1-4/+19
Allowing stuff like NIX_REMOTE=https://cache.nixos.org nix-store -qR /nix/store/x1p1gl3a4kkz5ci0nfbayjqlqmczp1kq-geeqie-1.1 or NIX_REMOTE=https://cache.nixos.org nix-store --export /nix/store/x1p1gl3a4kkz5ci0nfbayjqlqmczp1kq-geeqie-1.1 | nix-store --import
2016-02-04 StoreAPI -> StoreEelco Dolstra1-2/+2
Calling a class an API is a bit redundant...
2016-02-04 Eliminate the "store" global variableEelco Dolstra1-1/+4
Also, move a few free-standing functions into StoreAPI and Derivation. Also, introduce a non-nullable smart pointer, ref<T>, which is just a wrapper around std::shared_ptr ensuring that the pointer is never null. (For reference-counted values, this is better than passing a "T&", because the latter doesn't maintain the refcount. Usually, the caller will have a shared_ptr keeping the value alive, but that's not always the case, e.g., when passing a reference to a std::thread via std::bind.)
2015-10-21 Show progress indicator for builtin fetchurlEelco Dolstra1-0/+1
2015-10-21 Disable TLS verification for builtin fetchurlEelco Dolstra1-1/+7
This makes it consistent with the Nixpkgs fetchurl and makes it work in chroots. We don't need verification because the hash of the result is checked anyway.
2015-07-20 Make <nix/fetchurl.nix> a builtin builderEelco Dolstra1-0/+22
This ensures that 1) the derivation doesn't change when Nix changes; 2) the derivation closure doesn't contain Nix and its dependencies; 3) we don't have to rely on ugly chroot hacks.