nix-super/src/libexpr
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
..
attr-path.cc * Use a proper namespace. 2006-09-04 21:06:23 +00:00
attr-path.hh * Use a proper namespace. 2006-09-04 21:06:23 +00:00
eval.cc * Merge addToStore and addToStoreFixed. 2006-12-01 20:51:18 +00:00
eval.hh * Big cleanup of the semantics of paths, strings, contexts, string 2006-10-16 15:55:34 +00:00
expr-to-xml.cc * Big cleanup of the semantics of paths, strings, contexts, string 2006-10-16 15:55:34 +00:00
expr-to-xml.hh * Big cleanup of the semantics of paths, strings, contexts, string 2006-10-16 15:55:34 +00:00
get-drvs.cc * Backwards compatibility hack for user environments made by Nix <= 0.10. 2006-10-17 14:13:15 +00:00
get-drvs.hh * Use a proper namespace. 2006-09-04 21:06:23 +00:00
lexer.l * Big cleanup of the semantics of paths, strings, contexts, string 2006-10-16 15:55:34 +00:00
Makefile.am * Move setuid stuff to libutil. 2006-09-04 22:55:28 +00:00
nix.sdf * Support `++'. 2006-09-11 13:05:15 +00:00
nixexpr-ast.def * Backwards compatibility with old user environment manifests. 2006-10-17 14:01:45 +00:00
nixexpr.cc * Some better error messages. 2006-10-23 16:45:19 +00:00
nixexpr.hh * Big cleanup of the semantics of paths, strings, contexts, string 2006-10-16 15:55:34 +00:00
parser.hh * Use a proper namespace. 2006-09-04 21:06:23 +00:00
parser.y * Remove SwitchToOriginalUser, we're not going to need it anymore. 2006-12-02 14:34:14 +00:00
primops.cc * New primop builtins.filterSource, which can be used to filter files 2006-12-12 23:05:01 +00:00