summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-02-08 17:38:17 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-02-08 17:38:17 +0000
commit572eca7368289da6a037073b599cefafb26ef699 (patch)
tree2437f225f926cb089f0f2f7f761c1334b2aee913 /pkgs/top-level
parentffe91d36c3ead2e14fae4bcebaef8425df0c5d4c (diff)
* Get rid of all-packages.nix.
svn path=/nixpkgs/branches/usability/; revision=4766
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
deleted file mode 100644
index 55f705ebd4336..0000000000000
--- a/pkgs/top-level/all-packages.nix
+++ /dev/null
@@ -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;
-}