summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2009-08-25 06:04:13 +0000
committerMichael Raskin <7c6f434c@mail.ru>2009-08-25 06:04:13 +0000
commit3b5b31afed557cff7f0cfea57725faeaf55fdb91 (patch)
tree24e29aaa4a1e00ee559e2bca30ae09a19d55c703 /pkgs
parent585e52c406a38182144489c6e620e1c1af751b7d (diff)
Hopefully that should a) work b) not break things when it does not work
svn path=/nixpkgs/trunk/; revision=16846
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/all-packages.nix13
-rw-r--r--pkgs/top-level/release.nix4
2 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 4f1a6634e5881..8c422ed7c5008 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -7007,12 +7007,13 @@ let
     inherit (xlibs) libX11;
   };
 
-  RealPlayer = import ../applications/video/RealPlayer {
-    inherit fetchurl stdenv;
-    inherit (gtkLibs) glib pango atk gtk;
-    inherit (xlibs) libX11;
-    libstdcpp5 = gcc33.gcc;
-  };
+  RealPlayer = platformPackage ["i686-linux"] 
+    (import ../applications/video/RealPlayer {
+      inherit fetchurl stdenv;
+      inherit (gtkLibs) glib pango atk gtk;
+      inherit (xlibs) libX11;
+      libstdcpp5 = gcc33.gcc;
+    });
 
   rsync = import ../applications/networking/sync/rsync {
     inherit fetchurl stdenv acl;
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index eb79916c53629..bc7c1a56474f5 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -66,7 +66,9 @@ in {
 
   tarball = import ./make-tarball.nix;
 
-} // (mapTestOn (/*(selectMaintained pkgs) // */ rec {
+} // (mapTestOn (rec {
+
+  maintainedPackages = selectMaintained pkgs;
 
   MPlayer = linux;
   abcde = linux;