firefox: mark as broken on 32-bit buildPlatform
This commit is contained in:
parent
93ba4ecd58
commit
ed33a6c327
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, callPackage, fetchurl }:
|
||||
{ config, stdenv, lib, callPackage, fetchurl }:
|
||||
|
||||
let
|
||||
common = opts: callPackage (import ./common.nix opts) {};
|
||||
|
@ -23,6 +23,8 @@ rec {
|
|||
maintainers = with lib.maintainers; [ eelco andir ];
|
||||
platforms = lib.platforms.unix;
|
||||
badPlatforms = lib.platforms.darwin;
|
||||
broken = stdenv.buildPlatform.is32bit; # since Firefox 60, build on 32-bit platforms fails with "out of memory".
|
||||
# not in `badPlatforms` because cross-compilation on 64-bit machine might work.
|
||||
license = lib.licenses.mpl20;
|
||||
};
|
||||
updateScript = callPackage ./update.nix {
|
||||
|
|
Loading…
Reference in a new issue