Merge pull request #81864 from volth/patch-389

firefox: mark as broken on 32-bit buildPlatform
This commit is contained in:
Florian Klink
2020-04-05 20:29:29 +02:00
committed by GitHub

View File

@@ -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 {