Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-03-21 | Also make the backwards compatible case of RemoteStore::addToStore run in ↵ | Eelco Dolstra | 1 | -15/+15 | |
constant memory Just because we can. | |||||
2018-03-21 | Make 'nix copy --to daemon' run in constant memory | Eelco Dolstra | 2 | -5/+4 | |
2018-03-21 | Make 'nix copy --to ssh://...' run in constant memory | Eelco Dolstra | 1 | -2/+2 | |
2018-03-21 | Make 'nix copy --from ssh://...' run in constant memory | Eelco Dolstra | 4 | -24/+22 | |
For instance, this reduced the memory consumption of $ nix copy --from ssh://localhost --to ~/my-nix /nix/store/1n7x0yv8vq6zi90hfmian84vdhd04bgp-blender-2.79a from 632 MiB to 16 MiB. | |||||
2018-03-21 | Merge branch 'master' of git://github.com/coreyoconnor/nix | Shea Levy | 1 | -1/+4 | |
2018-03-21 | LegacySSHStore: Allow overriding the path to nix-store | Eelco Dolstra | 1 | -1/+2 | |
2018-03-20 | manual: correct repeated "--deriver". Add missing single char option aliases. | Corey O'Connor | 1 | -1/+4 | |
2018-03-20 | Merge pull request #1997 from dtzWill/fix/cxx14-std-consistency | Eelco Dolstra | 3 | -3/+3 | |
ask autotools for c++14 support flags, not c++11; don't override later | |||||
2018-03-20 | Remove unused channel-cache directory | Eelco Dolstra | 1 | -5/+0 | |
2018-03-20 | Style fix | Eelco Dolstra | 1 | -17/+14 | |
2018-03-20 | ask autotools for c++14 support flags, not c++11; don't override later | Will Dietz | 3 | -3/+3 | |
2018-03-20 | Make <nix/buildenv.nix> a builtin builder | Eelco Dolstra | 7 | -94/+69 | |
This avoids sandbox annoyances. | |||||
2018-03-20 | Move builtinFetchurl to its own file | Eelco Dolstra | 2 | -1/+1 | |
2018-03-20 | Slight simplification | Eelco Dolstra | 1 | -5/+2 | |
2018-03-20 | SSHMaster: Optionally pass -v to ssh | Eelco Dolstra | 1 | -0/+4 | |
2018-03-20 | Hack to get SSH error messages from build-remote | Eelco Dolstra | 4 | -7/+33 | |
E.g. cannot build on 'ssh://mac1': cannot connect to 'mac1': bash: nix-store: command not found cannot build on 'ssh://mac2': cannot connect to 'mac2': Host key verification failed. cannot build on 'ssh://mac3': cannot connect to 'mac3': Received disconnect from 213... port 6001:2: Too many authentication failures Authentication failed. | |||||
2018-03-20 | Fix coverage job | Eelco Dolstra | 1 | -7/+5 | |
2018-03-19 | serialise.cc: remove pessimising move | Will Dietz | 1 | -1/+1 | |
from clang6: src/libutil/serialise.cc:189:23: warning: moving a temporary object prevents copy elision [-Wpessimizing-move] | |||||
2018-03-19 | Merge pull request #1989 from dtzWill/fix/avoid-reserved-standard-macros | Shea Levy | 2 | -9/+9 | |
util: rename stdout/stdin members to avoid conflicts w/standard macro | |||||
2018-03-19 | util: rename stdout/stdin members to avoid conflicts w/standard macro | Will Dietz | 2 | -9/+9 | |
(cherry picked from commit c389a7fb617ed7bcd617efa68c6a48c00405310d) | |||||
2018-03-19 | Merge branch 'master' of git://github.com/bchallenor/nix | Shea Levy | 1 | -1/+3 | |
2018-03-19 | Fix build on non-x86_64-linux | Eelco Dolstra | 2 | -3/+5 | |
2018-03-19 | Shut up signedness warning | Eelco Dolstra | 2 | -2/+2 | |
2018-03-19 | Dockerfile: verify tar file with sha256sum | Ben Challenor | 1 | -1/+3 | |
2018-03-18 | Dockerfile: 1.11.14 -> 2.0 | Ben Challenor | 1 | -1/+1 | |
2018-03-18 | Fix bad XML | Eelco Dolstra | 1 | -2/+1 | |
2018-03-17 | doc: document the min-free and max-free options | zimbatm | 1 | -0/+17 | |
2018-03-17 | doc: add xml:id to all the config options | zimbatm | 1 | -18/+18 | |
2018-03-16 | nix-shell: allow symlinks to .drvs | Linus Heckemann | 3 | -3/+19 | |
This makes persistent shell environments easier to use. | |||||
2018-03-16 | Reduce substitution memory consumption | Eelco Dolstra | 8 | -37/+145 | |
copyStorePath() now pipes the output of srcStore->narFromPath() directly into dstStore->addToStore(). The sink used by the former is converted into a source usable by the latter using boost::coroutine2. This is based on [1]. This reduces the maximum resident size of $ nix build --store ~/my-nix/ /nix/store/b0zlxla7dmy1iwc3g459rjznx59797xy-binutils-2.28.1 --substituters file:///tmp/binary-cache-xz/ --no-require-sigs from 418592 KiB to 53416 KiB. (The previous commit also reduced the runtime from ~4.2s to ~3.4s, not sure why.) A further improvement will be to download files into a Sink. [1] https://github.com/NixOS/nix/compare/master...Mathnerd314:dump-fix-coroutine#diff-dcbcac55a634031f9cc73707da6e4b18 Issue #1969. | |||||
2018-03-16 | decompress(): Use a Source and Sink | Eelco Dolstra | 6 | -87/+206 | |
This allows decompression to happen in O(1) memory. | |||||
2018-03-16 | Merge pull request #1939 from dezgeg/lexer-fix | Eelco Dolstra | 5 | -4/+11 | |
libexpr: Recognize newline in more places in lexer | |||||
2018-03-16 | Don't retry on CURLE_SSL_CACERT_BADFILE | Eelco Dolstra | 1 | -0/+1 | |
The certificates won't get any better if we retry. | |||||
2018-03-15 | Filter ANSI colors when not writing to a terminal | Eelco Dolstra | 4 | -8/+10 | |
Fixes https://github.com/NixOS/nixpkgs/issues/37114. | |||||
2018-03-15 | Merge pull request #1965 from masaeedu/master | Eelco Dolstra | 3 | -7/+17 | |
Wrap thread local in function for Cygwin | |||||
2018-03-14 | Catch more possible instances of passing NULL to memcpy. | Shea Levy | 3 | -4/+10 | |
Actually fixes #1976. | |||||
2018-03-14 | Merge branch 'fix/errno-sighandler' of git://github.com/dtzWill/nix | Shea Levy | 1 | -0/+3 | |
2018-03-14 | concatLists: Don't pass NULL pointers to memcpy. | Shea Levy | 1 | -1/+2 | |
This is UB, even if the size is 0. See #1976. Fixes #1976. | |||||
2018-03-14 | nix-daemon: preserve errno in signal handler (thanks tsan) | Will Dietz | 1 | -0/+3 | |
2018-03-14 | Fix compatibility with latest boost::format | Eelco Dolstra | 2 | -23/+23 | |
2018-03-14 | Factor out commonality between release.nix and shell.nix | Eelco Dolstra | 3 | -48/+43 | |
2018-03-14 | Use boost::format from the boost package | Eelco Dolstra | 23 | -2445/+13 | |
Note that this only requires headers from boost so it doesn't add a runtime dependency. Also, use Nixpkgs 18.03. | |||||
2018-03-13 | Merge pull request #1906 from dtzWill/fix/nix-search | Shea Levy | 4 | -2/+71 | |
nix search: tests and fix #1893 and part of #1892 | |||||
2018-03-13 | build-remote: Don't substitute the build result | Eelco Dolstra | 1 | -1/+1 | |
2018-03-13 | Typo | Eelco Dolstra | 1 | -1/+1 | |
2018-03-13 | fetchGit: Fix debug message | Guillaume Maudoux | 1 | -1/+1 | |
2018-03-12 | Wrap thread local in function for Cygwin | Asad Saeeduddin | 3 | -7/+17 | |
Fixes #1826. See #1352 for a previous instance of a similar change. | |||||
2018-03-09 | Fix double free in Store::queryPathInfo() | Eelco Dolstra | 1 | -4/+4 | |
It was holding on to a Value* (i.e. a std::shared_ptr<ValidPathInfo>*) outside of the pathInfoCache lock, so the std::shared_ptr could be destroyed between the release of the lock and the decrement of the std::shared_ptr refcount. This can happen if more than 'path-info-cache-size' paths are added in the meantime, *or* if clearPathInfoCache() is called. The hydra-queue-runner queue monitor thread periodically calls the later, so is likely to trigger a crash. Fixes https://github.com/NixOS/hydra/issues/542. | |||||
2018-03-09 | Merge pull request #1959 from redfish64/master | Eelco Dolstra | 1 | -11/+11 | |
Modified MakeBinOp to no longer produce its name using concatenation … | |||||
2018-03-09 | Modified MakeBinOp to no longer produce its name using concatenation and "##". | Tim Engler | 1 | -11/+11 | |
Doing so prevents emacs tags from working, as well as makes the code extremely confusing for a newbie. In the prior state, if someone wants to find the definition of "ExprApp" for example, a grep through the code reveals nothing. Since the definition could be hiding in numerous ".h" files, it's really difficult to find. This personally took me several hours to figure out. |