Merge pull request #242781 from MatthewCash/firefox-devedition-no-signing

firefox-devedition-unwrapped: do not require addons to be signed
This commit is contained in:
Martin Weinelt 2023-07-13 02:55:12 +02:00 committed by GitHub
commit ba6771c386
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,7 +54,7 @@
};
};
firefox-devedition = buildMozillaMach rec {
firefox-devedition = (buildMozillaMach rec {
pname = "firefox-devedition";
version = "116.0b3";
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";