Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade cef_binary to 127.3.5+g114ea2a+chromium-127.0.6533.120 #45

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
config:
- arch: x86_64
target: x86_64-pc-windows-msvc
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.2%2Bgf1af617%2Bchromium-127.0.6533.100_windows64.tar.bz2
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.5%2Bg114ea2a%2Bchromium-127.0.6533.120_windows64.tar.bz2
- arch: i686
target: i686-pc-windows-msvc
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.2%2Bgf1af617%2Bchromium-127.0.6533.100_windows32.tar.bz2
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.5%2Bg114ea2a%2Bchromium-127.0.6533.120_windows32.tar.bz2

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
config:
- arch: x86_64
target: x86_64-unknown-linux-gnu
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.2%2Bgf1af617%2Bchromium-127.0.6533.100_linux64.tar.bz2
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.5%2Bg114ea2a%2Bchromium-127.0.6533.120_linux64.tar.bz2
- arch: i686
target: i686-unknown-linux-gnu
# Linux x86 32-bit builds are discontinued after version 101 (details)
Expand Down Expand Up @@ -218,10 +218,10 @@ jobs:
config:
- arch: armhf
target: armv7-unknown-linux-gnueabihf
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.2%2Bgf1af617%2Bchromium-127.0.6533.100_linuxarm.tar.bz2
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.5%2Bg114ea2a%2Bchromium-127.0.6533.120_linuxarm.tar.bz2
- arch: aarch64
target: aarch64-unknown-linux-gnu
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.2%2Bgf1af617%2Bchromium-127.0.6533.100_linuxarm64.tar.bz2
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.5%2Bg114ea2a%2Bchromium-127.0.6533.120_linuxarm64.tar.bz2

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
config:
- arch: x86_64
target: x86_64-apple-darwin
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.2%2Bgf1af617%2Bchromium-127.0.6533.100_macosx64.tar.bz2
url: https://cef-builds.spotifycdn.com/cef_binary_127.3.5%2Bg114ea2a%2Bchromium-127.0.6533.120_macosx64.tar.bz2

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# "aarch64-darwin" = { platformUrl = "macosarm64"; projectArchCmake = "arm64"; };
};

platforms."x86_64-linux".hash = "sha256-wIPM7D/D6xDoDkj0Mxvp8a30LhU6oGi0Q+LPGOEHZjY=";
platforms."x86_64-linux".hash = "sha256-OrWSrHATMXXp+Z0rZ2/WkK/obcWUISlzjgjBA5yiYZE=";
# platforms."aarch64-linux".hash = "";
# platforms."armv7l-linux".hash = "";
# platforms."x86_64-darwin".hash = "";
Expand All @@ -36,7 +36,7 @@
inherit (platforms.${pkgs.stdenv.hostPlatform.system}) platformUrl projectArchCmake hash;
in
(prev: rec {
version = "127.3.2+gf1af617+chromium-127.0.6533.100";
version = "127.3.5+g114ea2a+chromium-127.0.6533.120";

src = pkgs.fetchzip {
inherit hash;
Expand Down