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:
Matthew_Cash 2023-07-10 23:43:13 -07:00
parent 408c0e8c15
commit 941a22521e
No known key found for this signature in database
GPG key ID: 7449B33FA8E4C190

View file

@ -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";