* Get rid of all-packages.nix.

svn path=/nixpkgs/branches/usability/; revision=4766
This commit is contained in:
Eelco Dolstra 2006-02-08 17:38:17 +00:00
parent ffe91d36c3
commit 572eca7368

View file

@ -1,18 +0,0 @@
# This file evaluates to a function that, when supplied with a system
# identifier, returns the set of all packages provided by the Nix
# Package Collection. It does this by supplying
# `all-packages-generic.nix' with one of the standard build
# environments defined in `stdenvs.nix'.
{system ? __currentSystem}: let {
allPackages = import ./all-packages-generic.nix;
stdenvs = import ./stdenvs.nix {inherit system allPackages;};
# Select the right instantiation.
body =
if system == "i686-linux" then stdenvs.stdenvLinuxPkgs
else if system == "i686-freebsd" then stdenvs.stdenvFreeBSDPkgs
else if system == "powerpc-darwin" then stdenvs.stdenvDarwinPkgs
else stdenvs.stdenvNativePkgs;
}