firefox-{devedition,beta}-unwrapped: 144.0b9 -> 145.0b9 (#458580)
This commit is contained in:
@@ -10,11 +10,11 @@
|
||||
buildMozillaMach rec {
|
||||
pname = "firefox-beta";
|
||||
binaryName = "firefox-beta";
|
||||
version = "144.0b9";
|
||||
version = "145.0b9";
|
||||
applicationName = "Firefox Beta";
|
||||
src = fetchurl {
|
||||
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
|
||||
sha512 = "75a177be0b462ec0e668bbfd7182341499f3eb7b5a7a067ab207ff8e8f551672d0cec3c6a918bac0b9675d8315bfb59169c1ae4110f49a017417c287106366c7";
|
||||
sha512 = "5dee0ec8bb66153d1a5905692c3e9b48e91a1d55728f9e173dfb08f9d0e781fcc8ba978a9e6a8948e56d26cb064bda7c0311260a8828752a1390fdb0e18ce769";
|
||||
};
|
||||
|
||||
meta = {
|
||||
|
||||
@@ -10,13 +10,13 @@
|
||||
buildMozillaMach rec {
|
||||
pname = "firefox-devedition";
|
||||
binaryName = "firefox-devedition";
|
||||
version = "144.0b9";
|
||||
version = "145.0b9";
|
||||
applicationName = "Firefox Developer Edition";
|
||||
requireSigning = false;
|
||||
branding = "browser/branding/aurora";
|
||||
src = fetchurl {
|
||||
url = "mirror://mozilla/devedition/releases/${version}/source/firefox-${version}.source.tar.xz";
|
||||
sha512 = "b6b09383cfd846cd6c592f2348bd72dd790ce2565b45cbc2614b030af6302beafc9df17ecc07f4b6f369c31078719b39cc3e0a4ea08dd83c9c9180d455c37247";
|
||||
sha512 = "36000021b8f30eb5e80ce3b2e4ae05499e8b8cbdec93ba97dfb9c8f107cbe80202a13c4923491c01c8c245fc1810bb6fc82a46a06817ab7e70a47c04385b306e";
|
||||
};
|
||||
|
||||
# buildMozillaMach sets MOZ_APP_REMOTINGNAME during configuration, but
|
||||
|
||||
@@ -98,6 +98,7 @@ in
|
||||
# Darwin
|
||||
apple-sdk_14,
|
||||
apple-sdk_15,
|
||||
apple-sdk_26,
|
||||
cups,
|
||||
rsync, # used when preparing .app directory
|
||||
|
||||
@@ -330,7 +331,7 @@ buildStdenv.mkDerivation {
|
||||
++
|
||||
lib.optionals
|
||||
(
|
||||
lib.versionAtLeast version "141.0.2"
|
||||
(lib.versionAtLeast version "141.0.2" && lib.versionOlder version "145.0")
|
||||
|| (lib.versionAtLeast version "140.2.0" && lib.versionOlder version "141.0")
|
||||
)
|
||||
[
|
||||
@@ -466,6 +467,7 @@ buildStdenv.mkDerivation {
|
||||
(
|
||||
stdenv.hostPlatform.isDarwin
|
||||
&& lib.versionAtLeast version "143"
|
||||
&& lib.versionOlder version "145"
|
||||
&& lib.versionOlder apple-sdk_15.version "15.4"
|
||||
)
|
||||
''
|
||||
@@ -556,7 +558,14 @@ buildStdenv.mkDerivation {
|
||||
zip
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
(if lib.versionAtLeast version "138" then apple-sdk_15 else apple-sdk_14)
|
||||
(
|
||||
if lib.versionAtLeast version "145" then
|
||||
apple-sdk_26
|
||||
else if lib.versionAtLeast version "138" then
|
||||
apple-sdk_15
|
||||
else
|
||||
apple-sdk_14
|
||||
)
|
||||
cups
|
||||
]
|
||||
++ (lib.optionals (!stdenv.hostPlatform.isDarwin) (
|
||||
|
||||
Reference in New Issue
Block a user