Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-03-30 | nix copy: add an example with S3 | zimbatm | 1 | -0/+6 | |
I couldn't find a good example how to use it with non-us-east-1 buckets. | |||||
2018-02-21 | nix-copy: fix examples | Jörg Thalheim | 1 | -3/+3 | |
maybe a left-over from nix-store -r ? | |||||
2017-10-24 | nix: Respect -I, --arg, --argstr | Eelco Dolstra | 1 | -2/+10 | |
Also, random cleanup to argument handling. | |||||
2017-09-27 | nix copy: make recursive by default | Eelco Dolstra | 1 | -0/+1 | |
2017-09-08 | nix copy: Add --substitute flag | Eelco Dolstra | 1 | -1/+9 | |
2017-09-08 | nix copy: Add examples | Eelco Dolstra | 1 | -1/+9 | |
2017-09-06 | nix build: Add --out-link and --no-link options | Eelco Dolstra | 1 | -1/+1 | |
2017-08-16 | nix copy: Add --no-check-sigs flag | Eelco Dolstra | 1 | -1/+9 | |
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-03-16 | nix copy: Make -r option use the "from" store | Eelco Dolstra | 1 | -3/+7 | |
Previously, we tried to compute the closure in the local store, which obviously doesn't work. | |||||
2017-03-16 | copyPaths(): Use queryValidPaths() to reduce SSH latency | Eelco Dolstra | 1 | -1/+1 | |
2016-11-10 | build-remote: Implement in C++ | Shea Levy | 1 | -27/+1 | |
2016-09-02 | Merge openStore and openStoreAt with default arguments | Shea Levy | 1 | -2/+2 | |
2016-05-04 | Add a copyStorePath() utility function | Eelco Dolstra | 1 | -5/+1 | |
2016-04-25 | Improved logging abstraction | Eelco Dolstra | 1 | -17/+5 | |
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 | Factor out parallel processing of work items that have dependencies | Eelco Dolstra | 1 | -55/+18 | |
2016-04-22 | nix copy: Parallelise | Eelco Dolstra | 1 | -13/+58 | |
2016-04-22 | Add "nix copy" command | Eelco Dolstra | 1 | -0/+87 | |
This replaces nix-push. For example, $ nix copy --to file:///tmp/cache -r $(type -p firefox) copies the closure of firefox to the specified binary cache. And $ nix copy --from file:///tmp/cache --to s3://my-cache /nix/store/abcd... copies between two binary caches. It will also replace nix-copy-closure, once we have an SSHStore class, e.g. $ nix copy --from ssh://alice@machine /nix/store/abcd... |