Merge pull request #199134 from uninsane/pr/librewolf-unsigned

This commit is contained in:
Artturi 2023-04-08 01:50:19 +03:00 committed by GitHub
commit cf4b4ea590
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
let
librewolf-src = callPackage ./librewolf.nix { };
in
(buildMozillaMach rec {
((buildMozillaMach rec {
pname = "librewolf";
applicationName = "LibreWolf";
binaryName = "librewolf";
@ -30,4 +30,6 @@ in
crashreporterSupport = false;
enableOfficialBranding = false;
pgoSupport = false; # Profiling gets stuck and doesn't terminate.
}
}).overrideAttrs (prev: {
MOZ_REQUIRE_SIGNING = "";
})