mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
478940e2c7
- support librewolf in the firefox nixos test - use the correct binary name - ensure autoplay is always on for the audio test, since librewolf disables it by default
34 lines
1.2 KiB
Nix
34 lines
1.2 KiB
Nix
{ stdenv, lib, callPackage, buildMozillaMach, nixosTests }:
|
|
|
|
let
|
|
librewolf-src = callPackage ./librewolf.nix { };
|
|
in
|
|
(buildMozillaMach rec {
|
|
pname = "librewolf";
|
|
applicationName = "LibreWolf";
|
|
binaryName = "librewolf";
|
|
version = librewolf-src.packageVersion;
|
|
src = librewolf-src.firefox;
|
|
inherit (librewolf-src) extraConfigureFlags extraPostPatch extraPassthru;
|
|
|
|
meta = {
|
|
description = "A fork of Firefox, focused on privacy, security and freedom";
|
|
homepage = "https://librewolf.net/";
|
|
maintainers = with lib.maintainers; [ squalus ];
|
|
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.
|
|
maxSilent = 14400; # 4h, double the default of 7200s (c.f. #129212, #129115)
|
|
license = lib.licenses.mpl20;
|
|
};
|
|
tests = [ nixosTests.librewolf ];
|
|
updateScript = callPackage ./update.nix {
|
|
attrPath = "librewolf-unwrapped";
|
|
};
|
|
}).override {
|
|
crashreporterSupport = false;
|
|
enableOfficialBranding = false;
|
|
pgoSupport = false; # Profiling gets stuck and doesn't terminate.
|
|
}
|