summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2003-11-20 13:58:49 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2003-11-20 13:58:49 +0000
commit2f3d764edba24f9f92cad9b5cb1f2d35e1c56ac4 (patch)
tree05b3269a01e4c871c0753715f6c64bf808576227 /pkgs
parent026ff9466a387026a6d2801303019ee75b49ad86 (diff)
* user-environment.nix is no longer needed, since it is now generated
  by nix-env.

svn path=/nixpkgs/trunk/; revision=518
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/system/i686-suse-linux.nix2
-rw-r--r--pkgs/system/user-environment.nix30
2 files changed, 1 insertions, 31 deletions
diff --git a/pkgs/system/i686-suse-linux.nix b/pkgs/system/i686-suse-linux.nix
index 643d2ad2c9235..3b5c0e3fd882c 100644
--- a/pkgs/system/i686-suse-linux.nix
+++ b/pkgs/system/i686-suse-linux.nix
@@ -1 +1 @@
-(import ./user-environment.nix) {system = "i686-suse-linux"}
+(import ./all-packages.nix) {system = "i686-suse-linux"}
diff --git a/pkgs/system/user-environment.nix b/pkgs/system/user-environment.nix
deleted file mode 100644
index 60b2293a13fdc..0000000000000
--- a/pkgs/system/user-environment.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-# Given a system identifier, this function returns a derivation of a
-# user environment, i.e., a set of symbolic links to `activated'
-# packages.  The resulting package is typically passed to the
-# `nix-switch' command in order to actually activate it.
-
-{system}: let {
-  # All activated packages.
-  pkgs = (import ./all-packages.nix) {system = system};
-
-  # The packages selection for inclusion in the user environment.
-  # This list should be generated automatically by a package
-  # management user interface.
-  selectedPkgs = [
-    pkgs.subversion
-    pkgs.pan
-    pkgs.sylpheed
-    pkgs.firebird
-    pkgs.MPlayer
-    pkgs.MPlayerPlugin
-    pkgs.gqview
-  ];
-
-  # Create a user environment.
-  body = derivation { 
-    name = "user-environment";
-    system = system;
-    builder = ./populate-linkdirs.pl;
-    dirs = selectedPkgs;
-  };
-}