nix-super/src
Eelco Dolstra a3e6415ba8 * New primop builtins.filterSource, which can be used to filter files
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-12 23:05:01 +00:00
..
bin2c * "Fix expression" -> "Nix expression". 2003-11-18 12:06:07 +00:00
boost * Install header files in /nix/include/nix. 2006-09-04 22:41:36 +00:00
bsdiff-4.3 * Print a better error message when writing the patched file (e.g., 2006-02-01 17:28:13 +00:00
libexpr * New primop builtins.filterSource, which can be used to filter files 2006-12-12 23:05:01 +00:00
libmain * Kill a build if it has gone for more than a certain number of 2006-12-08 15:44:00 +00:00
libstore * New primop builtins.filterSource, which can be used to filter files 2006-12-12 23:05:01 +00:00
libutil * New primop builtins.filterSource, which can be used to filter files 2006-12-12 23:05:01 +00:00
nix-env * New operation `nix-env --set' which sets a user environment to a 2006-12-12 19:06:02 +00:00
nix-hash * Use a proper namespace. 2006-09-04 21:06:23 +00:00
nix-instantiate * Doh! 2006-12-07 22:07:05 +00:00
nix-log2xml * Support for srcdir != builddir (NIX-41). 2006-05-12 11:47:45 +00:00
nix-setuid-helper * Rename all those main.cc files. 2006-12-07 20:47:30 +00:00
nix-store * Doh! 2006-12-07 22:07:05 +00:00
nix-worker * New primop builtins.filterSource, which can be used to filter files 2006-12-12 23:05:01 +00:00
aterm-helper.pl * Big cleanup of the semantics of paths, strings, contexts, string 2006-10-16 15:55:34 +00:00
Makefile.am * Start of the setuid helper (the program that performs the operations 2006-12-06 01:24:02 +00:00