guix/src
Eelco Dolstra 0dbd4638e0 * Two primops: builtins.intersectAttrs and builtins.functionArgs.
intersectAttrs returns the (right-biased) intersection between two
  attribute sets, e.g. every attribute from the second set that also
  exists in the first.  functionArgs returns the set of attributes
  expected by a function.

  The main goal of these is to allow the elimination of most of
  all-packages.nix.  Most package instantiations in all-packages.nix
  have this form:

    foo = import ./foo.nix {
      inherit a b c;
    };

  With intersectAttrs and functionArgs, this can be written as:

    foo = callPackage (import ./foo.nix) { };

  where

   callPackage = f: args:
     f ((builtins.intersectAttrs (builtins.functionArgs f) pkgs) // args);

  I.e., foo.nix is called with all attributes from "pkgs" that it
  actually needs (e.g., pkgs.a, pkgs.b and pkgs.c).  (callPackage can
  do any other generic package-level stuff we might want, such as
  applying makeOverridable.)  Of course, the automatically supplied
  arguments can be overriden if needed, e.g.

    foo = callPackage (import ./foo.nix) {
      c = c_version_2;
    };

  but for the vast majority of packages, this won't be needed.

  The advantages are to reduce the amount of typing needed to add a
  dependency (from three sites to two), and to reduce the number of
  trivial commits to all-packages.nix.  For the former, there have
  been two previous attempts:

    - Use "args: with args;" in the package's function definition.
      This however obscures the actual expected arguments of a
      function, which is very bad.

    - Use "{ arg1, arg2, ... }:" in the package's function definition
      (i.e. use the ellipis "..." to allow arbitrary additional
      arguments), and then call the function with all of "pkgs" as an
      argument.  But this inhibits error detection if you call it with
      an misspelled (or obsolete) argument.
2009-09-15 13:01:46 +00:00
..
bin2c
boost * Install some headers in the right location. 2009-03-05 14:57:50 +00:00
bsdiff-4.3
libexpr * Two primops: builtins.intersectAttrs and builtins.functionArgs. 2009-09-15 13:01:46 +00:00
libmain * Don't show trace information by default (`--show-trace' to enable). 2009-06-30 13:28:29 +00:00
libstore * Canonicalise timestamps in the Nix store to 1 (1970-01-01 00:00:01 2009-06-13 16:30:58 +00:00
libutil * Don't show trace information by default (`--show-trace' to enable). 2009-06-30 13:28:29 +00:00
nix-env * Replace newlines in table output with spaces. 2009-07-02 08:52:12 +00:00
nix-hash
nix-instantiate
nix-log2xml * Ignore carriage returns. 2008-11-25 02:30:35 +00:00
nix-setuid-helper
nix-store * Don't use ULLONG_MAX in maxFreed - use 0 to mean "no limit". 2009-03-26 11:02:07 +00:00
nix-worker * Shut up a GCC warning. 2009-03-23 13:52:52 +00:00
Makefile.am
aterm-helper.pl