mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
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 {};
|
||||
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user