firefox-devedition-unwrapped: don't require addons to be signed
Added MOZ_REQUIRE_SIGNING="" to firefox-devedition-unwrapped's configure options to match the official builds.
This commit is contained in:
parent
408c0e8c15
commit
941a22521e
1 changed files with 4 additions and 2 deletions
|
@ -54,7 +54,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
firefox-devedition = buildMozillaMach rec {
|
||||
firefox-devedition = (buildMozillaMach rec {
|
||||
pname = "firefox-devedition";
|
||||
version = "116.0b2";
|
||||
applicationName = "Mozilla Firefox Developer Edition";
|
||||
|
@ -81,7 +81,9 @@
|
|||
versionSuffix = "b[0-9]*";
|
||||
baseUrl = "https://archive.mozilla.org/pub/devedition/releases/";
|
||||
};
|
||||
};
|
||||
}).overrideAttrs (prev: {
|
||||
env.MOZ_REQUIRE_SIGNING = "";
|
||||
});
|
||||
|
||||
firefox-esr-102 = buildMozillaMach rec {
|
||||
pname = "firefox-esr-102";
|
||||
|
|
Loading…
Reference in a new issue