Trying to add a cross build to hydra: bisonSheevaplug

svn path=/nixpkgs/branches/stdenv-updates/; revision=19614
This commit is contained in:
Lluís Batlle i Rossell 2010-01-22 14:59:27 +00:00
parent ed3ebb7c2c
commit 94ed14ccef

View File

@ -4,6 +4,15 @@ let
pkgs = allPackages {};
pkgsSheevaplug = allPackages {
crossSystem = {
config = "armv5tel-unknown-linux-gnueabi";
bigEndian = false;
arch = "arm";
float = "soft";
};
};
/* Set the Hydra scheduling priority for a job. The default
priority (100) should be used for most jobs. A different
priority should only be used for a few particularly interesting
@ -78,6 +87,12 @@ in {
tarball = import ./make-tarball.nix;
bisonSheevaplug = let
system = builtins.currentSystem;
in
assert (system == "i686-linux" || system == "x86_64-linux");
pkgsSheevaplug.bison.hostDrv;
} // (mapTestOn ((packagesWithMetaPlatform pkgs) // rec {
MPlayer = linux;