firefox-devedition: fix remoting name

This commit is contained in:
Ryan Hendrickson
2025-06-19 04:34:07 -04:00
parent cad5eaf64d
commit 4d18fb7736
@@ -19,6 +19,15 @@ buildMozillaMach rec {
sha512 = "c653824a5be5e376f53bd73589760af6bb74d7ee66f6557ec9fda4e3d795a851f49d73c063abac69aa6663f7f8b3c76b9487d0c067e33bd1c2be7733b9356325";
};
# buildMozillaMach sets MOZ_APP_REMOTINGNAME during configuration, but
# unfortunately if the branding file also defines MOZ_APP_REMOTINGNAME, the
# branding file takes precedence. ("aurora" is the only branding to do this,
# so far.) We remove it so that the name set in buildMozillaMach takes
# effect.
extraPostPatch = ''
sed -i '/^MOZ_APP_REMOTINGNAME=/d' browser/branding/aurora/configure.sh
'';
meta = {
changelog = "https://www.mozilla.org/en-US/firefox/${lib.versions.majorMinor version}beta/releasenotes/";
description = "Web browser built from Firefox Developer Edition source tree";