From d8900100e515297720993904e4c97111b4dcd928 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 23 Jan 2010 09:41:50 +0000 Subject: [PATCH] Allowing linux-headers to be built for cross-compilations on non-linux platforms. Updating the list of hydra cross-build jobs to something more ambitious. svn path=/nixpkgs/branches/stdenv-updates/; revision=19628 --- .../linux/kernel-headers/2.6.28.nix | 2 +- pkgs/top-level/release.nix | 36 +++---------------- 2 files changed, 5 insertions(+), 33 deletions(-) diff --git a/pkgs/os-specific/linux/kernel-headers/2.6.28.nix b/pkgs/os-specific/linux/kernel-headers/2.6.28.nix index 7d11413da26..82840f8a51f 100644 --- a/pkgs/os-specific/linux/kernel-headers/2.6.28.nix +++ b/pkgs/os-specific/linux/kernel-headers/2.6.28.nix @@ -1,6 +1,6 @@ {stdenv, fetchurl, perl, cross ? null}: -assert stdenv.isLinux; +assert cross == null -> stdenv.isLinux; let version = "2.6.28.5"; in diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 30fec5af387..0f7377b4311 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -678,40 +678,12 @@ in { crossArmLinux = mapTestOnCross crossSystem (rec { bison = nativePlatforms; uboot = nativePlatforms; - uclibc = nativePlatforms; + tightvnc = nativePlatforms; + openoffice = nativePlatforms; + wxGTK = nativePlatforms; + firefox = nativePlatforms; xorg = { - fontadobe100dpi = nativePlatforms; - fontadobe75dpi = nativePlatforms; - fontbh100dpi = nativePlatforms; - fontbhlucidatypewriter100dpi = nativePlatforms; - fontbhlucidatypewriter75dpi = nativePlatforms; - fontbhttf = nativePlatforms; - fontcursormisc = nativePlatforms; - fontmiscmisc = nativePlatforms; - iceauth = nativePlatforms; - libX11 = nativePlatforms; - lndir = all; - setxkbmap = nativePlatforms; - xauth = nativePlatforms; - xev = nativePlatforms; - xf86inputkeyboard = nativePlatforms; - xf86inputmouse = nativePlatforms; - xf86inputevdev = nativePlatforms; - xf86inputsynaptics = nativePlatforms; - xf86videoati = nativePlatforms; - xf86videointel = nativePlatforms; - xf86videonv = nativePlatforms; - xf86videovesa = nativePlatforms; - xfs = nativePlatforms; - xkbcomp = nativePlatforms; - xmessage = nativePlatforms; xorgserver = nativePlatforms; - xrandr = nativePlatforms; - xrdb = nativePlatforms; - xset = nativePlatforms; }; - gtkLibs = { - gtk = nativePlatforms; - }; }); })