Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-18 | Drop support for pre-c++11 compilers. | Shea Levy | |
In particular, gcc 4.6's std::exception::~exception has an exception specification in c++0x mode, which requires us to use that deprecated feature in nix (and led to breakage after some recent changes that were valid c++11). nix already uses several c++11 features and gcc 4.7 has been around for over 2 years. | |||
2014-09-17 | Add Make flag to disable optimization | Eelco Dolstra | |
2014-05-02 | Install an Upstart service | Eelco Dolstra | |
2014-04-07 | Install systemd units | Eelco Dolstra | |
2014-03-30 | boost::shared_ptr -> std::shared_ptr | Eelco Dolstra | |
2014-02-08 | Add download-via-ssh substituter | Shea Levy | |
This substituter connects to a remote host, runs nix-store --serve there, and then forwards substituter commands on to the remote host and sends their results to the calling program. The ssh-substituter-hosts option can be specified as a list of hosts to try. This is an initial implementation and, while it works, it has some limitations: * Only the first host is used * There is no caching of query results (all queries are sent to the remote machine) * There is no informative output (such as progress bars) * Some failure modes may cause unhelpful error messages * There is no concept of trusted-ssh-substituter-hosts Signed-off-by: Shea Levy <shea@shealevy.com> | |||
2014-02-01 | Fix "make dist" | Eelco Dolstra | |
2014-02-01 | Update Makefile variable names | Eelco Dolstra | |
2014-02-01 | Build/install manual | Eelco Dolstra | |
2014-01-30 | Rename Makefile -> local.mk | Eelco Dolstra | |
2014-01-09 | Update Makefiles | Eelco Dolstra | |
2013-11-25 | Add support for ‘make installcheck’ | Eelco Dolstra | |
2013-11-25 | Add a Makefile for the Perl stuff | Eelco Dolstra | |
2013-11-25 | Rename Makefile.new -> Makefile | Eelco Dolstra | |