3
0
Fork 0
forked from mirrors/nixpkgs

linux_chromiumos: require 64bit build host

I noticed that almost all the Hydra build failures were on i686. Sure
enough, upstream says that you need an x86_64 machine to build the
kernel.
This commit is contained in:
Joachim Fasting 2016-03-27 04:09:06 +02:00
parent 32b7b0009f
commit bd9737cc3e
2 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,8 @@
{ stdenv, fetchgit, perl, buildLinux, ncurses, openssh, ... } @ args:
# ChromiumOS requires a 64bit build host
assert stdenv.is64bit;
import ./generic.nix (args // rec {
version = "3.14.0";
extraMeta.branch = "3.14";

View file

@ -1,5 +1,8 @@
{ stdenv, fetchgit, perl, buildLinux, ncurses, ... } @ args:
# ChromiumOS requires a 64bit build host
assert stdenv.is64bit;
import ./generic.nix (args // rec {
version = "3.18.0";
extraMeta.branch = "3.18";