summary refs log tree commit diff
path: root/pkgs/system/all-packages.nix
blob: 55f705ebd43360b92439917c2b65b58d9523dc40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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;
}