Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-24 | nix: Respect -I, --arg, --argstr | Eelco Dolstra | |
Also, random cleanup to argument handling. | |||
2017-07-30 | Replace Unicode quotes in user-facing strings by ASCII | Jörg Thalheim | |
Relevant RFC: NixOS/rfcs#4 $ ag -l | xargs sed -i -e "/\"/s/’/'/g;/\"/s/‘/'/g" | |||
2017-06-07 | Don't show flags from config settings in "nix --help" | Eelco Dolstra | |
2017-05-16 | Improve progress indicator | Eelco Dolstra | |
2016-11-26 | Revert "Get rid of unicode quotes (#1140)" | Eelco Dolstra | |
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 | |
2016-11-09 | Merge branch 'ssh-store' of https://github.com/shlevy/nix | Eelco Dolstra | |
2016-09-21 | printMsg(lvlError, ...) -> printError(...) etc. | Eelco Dolstra | |
2016-09-02 | Merge openStore and openStoreAt with default arguments | Shea Levy | |
2016-04-25 | Improved logging abstraction | Eelco Dolstra | |
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 | nix copy: Parallelise | Eelco Dolstra | |
2016-04-22 | Fold "nix query-path-sigs" into "nix path-info" | Eelco Dolstra | |
2016-04-19 | Move path info caching from BinaryCacheStore to Store | Eelco Dolstra | |
Caching path info is generally useful. For instance, it speeds up "nix path-info -rS /run/current-system" (i.e. showing the closure sizes of all paths in the closure of the current system) from 5.6s to 0.15s. This also eliminates some APIs like Store::queryDeriver() and Store::queryReferences(). | |||
2016-04-05 | Add "nix sign-paths" command | Eelco Dolstra | |
E.g. $ nix sign-paths -k ./secret -r $(type -p geeqie) signs geeqie and all its dependencies using the key in ./secret. | |||
2016-04-05 | Add "nix copy-sigs" command | Eelco Dolstra | |
This imports signatures from one store into another. E.g. $ nix copy-sigs -r /run/current-system -s https://cache.nixos.org/ imported 595 signatures |