Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2007-02-21 | * `nix-store --import' now also works in remote mode. The worker | Eelco Dolstra | 1 | -1/+35 | |
always requires a signature on the archive. This is to ensure that unprivileged users cannot add Trojan horses to the Nix store. | |||||
2007-02-21 | * Support exportPath() in remote mode. | Eelco Dolstra | 1 | -0/+26 | |
2006-12-12 | * New primop builtins.filterSource, which can be used to filter files | Eelco Dolstra | 1 | -2/+1 | |
from a source directory. All files for which a predicate function returns true are copied to the store. Typical example is to leave out the .svn directory: stdenv.mkDerivation { ... src = builtins.filterSource (path: baseNameOf (toString path) != ".svn") ./source-dir; # as opposed to # src = ./source-dir; } This is important because the .svn directory influences the hash in a rather unpredictable and variable way. | |||||
2006-12-07 | * Rename all those main.cc files. | Eelco Dolstra | 1 | -0/+569 | |