File tree Expand file tree Collapse file tree 6 files changed +5
-10
lines changed
applications/networking/browsers Expand file tree Collapse file tree 6 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -425,6 +425,7 @@ buildStdenv.mkDerivation {
425425 "--disable-updater"
426426 "--enable-application=${ application } "
427427 "--enable-default-toolkit=${ toolkit } "
428+ "--with-app-name=${ binaryName } "
428429 "--with-distribution-id=org.nixos"
429430 "--with-libclang-path=${ lib . getLib llvmPackagesBuildBuild . libclang } /lib"
430431 "--with-wasi-sysroot=${ wasiSysRoot } "
Original file line number Diff line number Diff line change 99
1010buildMozillaMach rec {
1111 pname = "firefox-beta" ;
12+ binaryName = pname ;
1213 version = "135.0b9" ;
1314 applicationName = "Mozilla Firefox Beta" ;
1415 src = fetchurl {
@@ -27,7 +28,7 @@ buildMozillaMach rec {
2728 # not in `badPlatforms` because cross-compilation on 64-bit machine might work.
2829 maxSilent = 14400 ; # 4h, double the default of 7200s (c.f. #129212, #129115)
2930 license = lib . licenses . mpl20 ;
30- mainProgram = "firefox" ;
31+ mainProgram = binaryName ;
3132 } ;
3233 tests = {
3334 inherit ( nixosTests ) firefox-beta ;
Original file line number Diff line number Diff line change 99
1010buildMozillaMach rec {
1111 pname = "firefox-devedition" ;
12+ binaryName = pname ;
1213 version = "135.0b9" ;
1314 applicationName = "Mozilla Firefox Developer Edition" ;
1415 requireSigning = false ;
@@ -29,7 +30,7 @@ buildMozillaMach rec {
2930 # not in `badPlatforms` because cross-compilation on 64-bit machine might work.
3031 maxSilent = 14400 ; # 4h, double the default of 7200s (c.f. #129212, #129115)
3132 license = lib . licenses . mpl20 ;
32- mainProgram = "firefox" ;
33+ mainProgram = binaryName ;
3334 } ;
3435 tests = {
3536 inherit ( nixosTests ) firefox-devedition ;
Original file line number Diff line number Diff line change 2828 } ;
2929
3030 extraConfigureFlags = [
31- "--with-app-name=${ pname } "
3231 "--with-app-basename=${ applicationName } "
3332 "--with-unsigned-addon-scopes=app,system"
3433 "--enable-proxy-bypass-protection"
Original file line number Diff line number Diff line change 99 extraPatches = [ "${ source } /patches/pref-pane/pref-pane-small.patch" ] ;
1010
1111 extraConfigureFlags = [
12- "--with-app-name=librewolf"
1312 "--with-unsigned-addon-scopes=app,system"
1413 ] ;
1514
Original file line number Diff line number Diff line change @@ -13407,16 +13407,10 @@ with pkgs;
1340713407
1340813408 firefox = wrapFirefox firefox-unwrapped { };
1340913409 firefox-beta = wrapFirefox firefox-beta-unwrapped {
13410- nameSuffix = "-beta";
1341113410 desktopName = "Firefox Beta";
13412- wmClass = "firefox-beta";
13413- icon = "firefox-beta";
1341413411 };
1341513412 firefox-devedition = wrapFirefox firefox-devedition-unwrapped {
13416- nameSuffix = "-devedition";
1341713413 desktopName = "Firefox Developer Edition";
13418- wmClass = "firefox-devedition";
13419- icon = "firefox-devedition";
1342013414 };
1342113415
1342213416 firefox-mobile = callPackage ../applications/networking/browsers/firefox/mobile-config.nix { };
You can’t perform that action at this time.
0 commit comments