summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-02-05 14:13:25 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-02-05 14:13:25 +0000
commit631ea038757bd88e55c10ec9b1aa1d2aee1af05f (patch)
tree8d5b1be4280061da44eed824aa06903c66f41007
parent874b4869a341654e3a4333d7e97c56a4ef25f301 (diff)
downloadnixpkgs-631ea038757bd88e55c10ec9b1aa1d2aee1af05f.tar
nixpkgs-631ea038757bd88e55c10ec9b1aa1d2aee1af05f.tar.gz
nixpkgs-631ea038757bd88e55c10ec9b1aa1d2aee1af05f.tar.bz2
nixpkgs-631ea038757bd88e55c10ec9b1aa1d2aee1af05f.tar.lz
nixpkgs-631ea038757bd88e55c10ec9b1aa1d2aee1af05f.tar.xz
nixpkgs-631ea038757bd88e55c10ec9b1aa1d2aee1af05f.tar.zst
nixpkgs-631ea038757bd88e55c10ec9b1aa1d2aee1af05f.zip
* Fix / disable some packages that give evaluation errors in Hydra.
svn path=/nixpkgs/trunk/; revision=19833
-rw-r--r--pkgs/applications/misc/grip/default.nix2
-rw-r--r--pkgs/applications/misc/hello/ex-2/default.nix4
-rw-r--r--pkgs/development/compilers/ghc/6.12.1.nix2
-rw-r--r--pkgs/games/jamp/default.nix7
-rw-r--r--pkgs/lib/platforms.nix2
-rw-r--r--pkgs/top-level/python-packages.nix2
-rw-r--r--pkgs/top-level/release.nix24
7 files changed, 14 insertions, 29 deletions
diff --git a/pkgs/applications/misc/grip/default.nix b/pkgs/applications/misc/grip/default.nix
index f6c43a05c3e..a82715fc13c 100644
--- a/pkgs/applications/misc/grip/default.nix
+++ b/pkgs/applications/misc/grip/default.nix
@@ -15,6 +15,6 @@ stdenv.mkDerivation {
     homepage = http://nostatic.org/grip;
     license = "GPLv2";
     maintainers = [args.lib.maintainers.marcweber];
-    platforms = args.lib.platforms.linux;
+    #platforms = args.lib.platforms.linux;
   };
 }
diff --git a/pkgs/applications/misc/hello/ex-2/default.nix b/pkgs/applications/misc/hello/ex-2/default.nix
index 876e0dfb7c5..409ff3745c1 100644
--- a/pkgs/applications/misc/hello/ex-2/default.nix
+++ b/pkgs/applications/misc/hello/ex-2/default.nix
@@ -1,13 +1,13 @@
 {stdenv, fetchurl}:
 
 stdenv.mkDerivation {
-  name = "hello-2.3";
+  name = "hello-2.3x26";
   
   src = fetchurl {
     url = mirror://gnu/hello/hello-2.3.tar.bz2;
     sha256 = "0c7vijq8y68bpr7g6dh1gny0bff8qq81vnp4ch8pjzvg56wb3js1";
   };
-  
+
   meta = {
     description = "A program that produces a familiar, friendly greeting";
     longDescription = ''
diff --git a/pkgs/development/compilers/ghc/6.12.1.nix b/pkgs/development/compilers/ghc/6.12.1.nix
index 3412cc771ac..b54001a70ea 100644
--- a/pkgs/development/compilers/ghc/6.12.1.nix
+++ b/pkgs/development/compilers/ghc/6.12.1.nix
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
     inherit homepage;
     description = "The Glasgow Haskell Compiler";
     maintainers = [stdenv.lib.maintainers.marcweber];
-    platforms = stdenv.platforms.linux;
+    platforms = stdenv.lib.platforms.linux;
   };
 
 
diff --git a/pkgs/games/jamp/default.nix b/pkgs/games/jamp/default.nix
index b551b9b6dfc..d9ae4ca738b 100644
--- a/pkgs/games/jamp/default.nix
+++ b/pkgs/games/jamp/default.nix
@@ -24,10 +24,7 @@ rec {
       
   meta = {
     description = "A physics-based game";
-    maintainers = [
-      a.lib.maintainers.raskin
-    ];
-    platforms = with a.lib.platforms; 
-      linux ++ darwin;
+    maintainers = [ a.lib.maintainers.raskin ];
+    platforms = a.lib.platforms.linux;
   };
 }
diff --git a/pkgs/lib/platforms.nix b/pkgs/lib/platforms.nix
index d8f9692ae09..5174476f954 100644
--- a/pkgs/lib/platforms.nix
+++ b/pkgs/lib/platforms.nix
@@ -11,5 +11,5 @@ rec {
   unix = linux ++ darwin ++ freebsd ++ openbsd;
   all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd;
   allBut = platform: lists.filter (x: platform != x) all;
-  mesaPlatforms = linux ++ darwin ++ freebsd;
+  mesaPlatforms = linux;
 }
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index b55c101167a..7b08c048fe5 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -369,7 +369,7 @@ rec {
       license = "GPLv2+";
 
       maintainers = [ stdenv.lib.maintainers.ludo ];
-      platforms = python.meta.platforms;
+      platforms = stdenv.lib.platforms.linux;
     };
   });
 
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index 8eaaeeed943..6b07a54a512 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -67,7 +67,7 @@ let
         else [];
 
   /* Common platform groups on which to test packages. */
-  inherit (pkgs.lib.platforms) linux darwin cygwin allBut all;
+  inherit (pkgs.lib.platforms) linux darwin cygwin allBut all mesaPlatforms;
 
   /* Platform groups for specific kinds of applications. */
   x11Supported = linux;
@@ -119,7 +119,7 @@ in {
   cksfv = all;
   classpath = linux;
   cmake = all;
-  compiz = linux;
+  #compiz = linux;
   consolekit = linux;
   coreutils = all;
   cpio = all;
@@ -174,7 +174,7 @@ in {
   ghostscriptX = linux;
   gimp = linux;
   git = linux;
-  gitFull = linux;
+  #gitFull = linux;
   glibc = linux;
   glibcLocales = linux;
   glxinfo = linux;
@@ -264,7 +264,7 @@ in {
   mcron = linux;
   mdadm = linux;
   mercurial = allBut "i686-cygwin";
-  mesa = linux ++ darwin;
+  mesa = mesaPlatforms;
   midori = linux;
   mingetty = linux;
   mk = linux;
@@ -322,7 +322,7 @@ in {
   python = allBut "i686-cygwin";
   pythonFull = linux;
   sbcl = all;
-  qt3 = allBut "i686-cygwin";
+  qt3 = linux;
   qt4 = linux;
   qt45 = linux;
   qt46 = linux;
@@ -408,7 +408,7 @@ in {
   wireshark = linux;
   wirelesstools = linux;
   wpa_supplicant = linux;
-  wxGTK = all;
+  wxGTK = linux;
   x11_ssh_askpass = linux;
   xchm = linux;
   xfig = x11Supported;
@@ -472,10 +472,6 @@ in {
     gtk = linux;
   };
 
-  haskellPackages_ghc683 = {
-    ghc = ghcSupported;
-  };
-
   haskellPackages_ghc6102 = {
     ghc = ghcSupported;
   };
@@ -570,14 +566,6 @@ in {
     kernel = linux;
   };
 
-  kernelPackages_2_6_31_zen = {
-    kernel = linux;
-  };
-
-  kernelPackages_2_6_31_zen_bfs = {
-    kernel = linux;
-  };
-
   kernelPackages_2_6_32 = {
     aufs = linux;
     kernel = linux;