Trying to add a cross build to hydra: bisonSheevaplug
svn path=/nixpkgs/branches/stdenv-updates/; revision=19614
This commit is contained in:
parent
ed3ebb7c2c
commit
94ed14ccef
@ -4,6 +4,15 @@ let
|
|||||||
|
|
||||||
pkgs = allPackages {};
|
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
|
/* Set the Hydra scheduling priority for a job. The default
|
||||||
priority (100) should be used for most jobs. A different
|
priority (100) should be used for most jobs. A different
|
||||||
priority should only be used for a few particularly interesting
|
priority should only be used for a few particularly interesting
|
||||||
@ -78,6 +87,12 @@ in {
|
|||||||
|
|
||||||
tarball = import ./make-tarball.nix;
|
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 {
|
} // (mapTestOn ((packagesWithMetaPlatform pkgs) // rec {
|
||||||
|
|
||||||
MPlayer = linux;
|
MPlayer = linux;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user