Staging environment for Lix release engineering scripts
Find a file
Eelco Dolstra 9279174dde * Added an experimental feature suggested by Andres: ellipses ("...")
in attribute set pattern matches.  This allows defining a function
  that takes *at least* the listed attributes, while ignoring
  additional attributes.  For instance,

    {stdenv, fetchurl, fuse, ...}:
    
    stdenv.mkDerivation {
      ...
    };
    
  defines a function that requires an attribute set that contains the 
  specified attributes but ignores others.  The main advantage is that
  we can then write in all-packages.nix

    aefs = import ../bla/aefs pkgs;

  instead of

    aefs = import ../bla/aefs {
      inherit stdenv fetchurl fuse;
    };

  This saves a lot of typing (not to mention not having to update
  all-packages.nix with purely mechanical changes).  It saves as much
  typing as the "args: with args;" style, but has the advantage that
  the function arguments are properly declared (not implicit in what
  the body of the "with" uses).
2008-08-14 14:00:44 +00:00
blacklisting
corepkgs
doc * Moved some stuff to the Nixpkgs manual. 2008-08-05 11:03:05 +00:00
externals * `make ext-clean': remove the bzip2 build. 2008-06-23 13:52:28 +00:00
make
misc small udpate 2007-12-12 02:12:58 +00:00
scripts Updates to nix-reduce-build 2008-08-06 19:43:53 +00:00
src * Added an experimental feature suggested by Andres: ellipses ("...") 2008-08-14 14:00:44 +00:00
tests * Added an experimental feature suggested by Andres: ellipses ("...") 2008-08-14 14:00:44 +00:00
aterm-gc.supp
AUTHORS
bootstrap.sh
ChangeLog
configure.ac * Merged the no-bdb branch (-r10900:HEAD 2008-06-09 13:52:45 +00:00
COPYING
INSTALL
Makefile.am
nix.conf.example 2007-10-29 22:16:36 +00:00
nix.spec.in
README * Updated URL. 2008-03-21 14:57:16 +00:00
substitute.mk --proxy=proxy:3128 2008-05-07 14:18:28 +00:00

For installation and usage instructions, please read the manual, which
can be found in `docs/manual/manual.html', and additionally at the Nix
website at <http://nixos.org/>.


Acknowledgments

This product includes software developed by the OpenSSL Project for
use in the OpenSSL Toolkit (http://www.OpenSSL.org/)