* Disable some packages that don't evaluate.

svn path=/nixpkgs/branches/stdenv-updates/; revision=19666
This commit is contained in:
Eelco Dolstra 2010-01-26 14:31:23 +00:00
parent a25a25e4f4
commit 566c9ffdc2

View File

@ -146,7 +146,7 @@ in {
cksfv = all; cksfv = all;
classpath = linux; classpath = linux;
cmake = all; cmake = all;
compiz = linux; #compiz = linux;
consolekit = linux; consolekit = linux;
coreutils = all; coreutils = all;
cpio = all; cpio = all;
@ -351,7 +351,7 @@ in {
python = allBut "i686-cygwin"; python = allBut "i686-cygwin";
pythonFull = linux; pythonFull = linux;
sbcl = all; sbcl = all;
qt3 = allBut "i686-cygwin"; qt3 = linux;
qt4 = linux; qt4 = linux;
qt45 = linux; qt45 = linux;
qt46 = linux; qt46 = linux;
@ -437,7 +437,7 @@ in {
wireshark = linux; wireshark = linux;
wirelesstools = linux; wirelesstools = linux;
wpa_supplicant = linux; wpa_supplicant = linux;
wxGTK = all; wxGTK = linux;
x11_ssh_askpass = linux; x11_ssh_askpass = linux;
xchm = linux; xchm = linux;
xfig = x11Supported; xfig = x11Supported;
@ -595,18 +595,6 @@ in {
virtualboxGuestAdditions = linux; virtualboxGuestAdditions = linux;
}; };
linuxPackages_2_6_31 = {
kernel = linux;
};
linuxPackages_2_6_31_zen = {
kernel = linux;
};
linuxPackages_2_6_31_zen_bfs = {
kernel = linux;
};
linuxPackages_2_6_32 = { linuxPackages_2_6_32 = {
aufs = linux; aufs = linux;
kernel = linux; kernel = linux;
@ -673,6 +661,7 @@ in {
}; };
} )) // ( } )) // (
/* Test some cross builds to the Sheevaplug */ /* Test some cross builds to the Sheevaplug */
let let
crossSystem = { crossSystem = {
@ -681,17 +670,17 @@ let
arch = "arm"; arch = "arm";
float = "soft"; float = "soft";
}; };
nativePlatforms = all; nativePlatforms = linux;
in { in {
crossArmLinux = mapTestOnCross crossSystem (rec { crossArmLinux = mapTestOnCross crossSystem (rec {
bison = nativePlatforms; bison = nativePlatforms;
uboot = nativePlatforms; uboot = nativePlatforms;
tightvnc = nativePlatforms; tightvnc = nativePlatforms;
openoffice = nativePlatforms; #openoffice = nativePlatforms;
wxGTK = nativePlatforms; wxGTK = nativePlatforms;
firefox = nativePlatforms; #firefox = nativePlatforms;
xorg = { xorg = {
xorgserver = nativePlatforms; #xorgserver = nativePlatforms;
}; };
}); });
}) })