2022-11-25T08:00:58 chromium 107.0.5304.110 -> 107.0.5304.121 https://repology.org/metapackage/chromium/versions 2022-11-25T08:01:03 attrpath: chromium 2022-11-25T08:01:04 Checking auto update branch... 2022-11-25T08:01:12 [version] 2022-11-25T08:01:12 [version] skipping because derivation has updateScript 2022-11-25T08:01:12 [rustCrateVersion] 2022-11-25T08:01:12 [rustCrateVersion] No cargoSha256 found 2022-11-25T08:01:12 [golangModuleVersion] 2022-11-25T08:01:12 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-11-25T08:01:12 [updateScript] 2022-11-25T08:02:02 [updateScript] Success 2022-11-25T08:02:02 [updateScript] this derivation will be built: /nix/store/1d5bb292rrilr5j11nml6r03w0qva8sv-packages.json.drv building '/nix/store/1d5bb292rrilr5j11nml6r03w0qva8sv-packages.json.drv'... Going to be running update for following packages: - chromium-107.0.5304.110 Press Enter key to continue... Running update for: - chromium-107.0.5304.110: UPDATING ... - chromium-107.0.5304.110: DONE. Packages updated! 2022-11-25T08:02:02 2022-11-25T08:02:02 [quotedUrls] 2022-11-25T08:02:02 [quotedUrls] nothing found to replace 2022-11-25T08:02:04 Diff after rewrites: diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 4fc987fac69..838a9417419 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -1,8 +1,8 @@ { "stable": { - "version": "107.0.5304.110", - "sha256": "1k7yjsb4i7m8i5mk018v7z25r4x1ypyprz4hnyrn7vk2983lhdfk", - "sha256bin64": "06rlxwbvp7rpw2rdpnjzl1cn7cr1rwlb20wz8r0cndjcjyzd3rjj", + "version": "107.0.5304.121", + "sha256": "12z0fhgxcsdkf6shnsg9maj3v901226cjcy8y2x8m88maw2apc0j", + "sha256bin64": "0dxcf0h5ngrfrdnygwvbxfjbwgaxp9dk3r4x0iin34m3b85mzzim", "deps": { "gn": { "version": "2022-09-14", 2022-11-25T08:05:25 Old version 107.0.5304.110" not present in master derivation file with contents: { lib, mkChromiumDerivation , channel, chromiumVersionAtLeast , enableWideVine, ungoogled }: with lib; mkChromiumDerivation (base: rec { name = "chromium-browser"; packageName = "chromium"; buildTargets = [ "mksnapshot" "chrome_sandbox" "chrome" ]; outputs = ["out" "sandbox"]; sandboxExecutableName = "__chromium-suid-sandbox"; installPhase = '' mkdir -p "$libExecPath" cp -v "$buildPath/"*.so "$buildPath/"*.pak "$buildPath/"*.bin "$libExecPath/" cp -v "$buildPath/libvulkan.so.1" "$libExecPath/" cp -v "$buildPath/vk_swiftshader_icd.json" "$libExecPath/" cp -v "$buildPath/icudtl.dat" "$libExecPath/" cp -vLR "$buildPath/locales" "$buildPath/resources" "$libExecPath/" cp -v "$buildPath/chrome_crashpad_handler" "$libExecPath/" cp -v "$buildPath/chrome" "$libExecPath/$packageName" # Swiftshader # See https://stackoverflow.com/a/4264351/263061 for the find invocation. if [ -n "$(find "$buildPath/swiftshader/" -maxdepth 1 -name '*.so' -print -quit)" ]; then echo "Swiftshader files found; installing" mkdir -p "$libExecPath/swiftshader" cp -v "$buildPath/swiftshader/"*.so "$libExecPath/swiftshader/" else echo "Swiftshader files not found" fi mkdir -p "$sandbox/bin" cp -v "$buildPath/chrome_sandbox" "$sandbox/bin/${sandboxExecutableName}" mkdir -vp "$out/share/man/man1" cp -v "$buildPath/chrome.1" "$out/share/man/man1/$packageName.1" for icon_file in chrome/app/theme/chromium/product_logo_*[0-9].png; do num_and_suffix="''${icon_file##*logo_}" icon_size="''${num_and_suffix%.*}" expr "$icon_size" : "^[0-9][0-9]*$" || continue logo_output_prefix="$out/share/icons/hicolor" logo_output_path="$logo_output_prefix/''${icon_size}x''${icon_size}/apps" mkdir -vp "$logo_output_path" cp -v "$icon_file" "$logo_output_path/$packageName.png" done # Install Desktop Entry install -D chrome/installer/linux/common/desktop.template \ $out/share/applications/chromium-browser.desktop substituteInPlace $out/share/applications/chromium-browser.desktop \ --replace "@@MENUNAME@@" "Chromium" \ --replace "@@PACKAGE@@" "chromium" \ --replace "Exec=/usr/bin/@@USR_BIN_SYMLINK_NAME@@" "Exec=chromium" # Append more mime types to the end sed -i '/^MimeType=/ s,$,x-scheme-handler/webcal;x-scheme-handler/mailto;x-scheme-handler/about;x-scheme-handler/unknown,' \ $out/share/applications/chromium-browser.desktop # See https://github.com/NixOS/nixpkgs/issues/12433 sed -i \ -e '/\[Desktop Entry\]/a\' \ -e 'StartupWMClass=chromium-browser' \ $out/share/applications/chromium-browser.desktop ''; passthru = { inherit sandboxExecutableName; }; requiredSystemFeatures = [ "big-parallel" ]; meta = { description = "An open source web browser from Google" + optionalString ungoogled ", with dependencies on Google web services removed"; longDescription = '' Chromium is an open source web browser from Google that aims to build a safer, faster, and more stable way for all Internet users to experience the web. It has a minimalist user interface and provides the vast majority of source code for Google Chrome (which has some additional features). ''; homepage = if ungoogled then "https://github.com/Eloston/ungoogled-chromium" else "https://www.chromium.org/"; maintainers = with maintainers; if ungoogled then [ squalus primeos michaeladler ] else [ primeos thefloweringash ]; license = if enableWideVine then licenses.unfree else licenses.bsd3; platforms = platforms.linux; mainProgram = "chromium"; hydraPlatforms = if (channel == "stable" || channel == "ungoogled-chromium") then ["aarch64-linux" "x86_64-linux"] else []; timeout = 172800; # 48 hours (increased from the Hydra default of 10h) }; }) 2022-11-25T16:52:02 chromium 0 -> 1 2022-11-25T16:52:04 attrpath: chromium 2022-11-25T16:52:04 Checking auto update branch... 2022-11-25T16:52:08 [version] 2022-11-25T16:52:08 [version] skipping because derivation has updateScript 2022-11-25T16:52:08 [rustCrateVersion] 2022-11-25T16:52:08 [rustCrateVersion] No cargoSha256 found 2022-11-25T16:52:08 [golangModuleVersion] 2022-11-25T16:52:08 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-11-25T16:52:08 [updateScript] 2022-11-25T16:53:05 [updateScript] Success 2022-11-25T16:53:05 [updateScript] Going to be running update for following packages: - chromium-107.0.5304.110 Press Enter key to continue... Running update for: - chromium-107.0.5304.110: UPDATING ... - chromium-107.0.5304.110: DONE. Packages updated! 2022-11-25T16:53:05 2022-11-25T16:53:05 [quotedUrls] 2022-11-25T16:53:05 [quotedUrls] nothing found to replace 2022-11-25T16:53:06 Diff after rewrites: diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index 4fc987fac69..c7ee4b263df 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -1,8 +1,8 @@ { "stable": { - "version": "107.0.5304.110", - "sha256": "1k7yjsb4i7m8i5mk018v7z25r4x1ypyprz4hnyrn7vk2983lhdfk", - "sha256bin64": "06rlxwbvp7rpw2rdpnjzl1cn7cr1rwlb20wz8r0cndjcjyzd3rjj", + "version": "107.0.5304.121", + "sha256": "12z0fhgxcsdkf6shnsg9maj3v901226cjcy8y2x8m88maw2apc0j", + "sha256bin64": "0dxcf0h5ngrfrdnygwvbxfjbwgaxp9dk3r4x0iin34m3b85mzzim", "deps": { "gn": { "version": "2022-09-14", @@ -45,9 +45,9 @@ } }, "ungoogled-chromium": { - "version": "107.0.5304.110", - "sha256": "1k7yjsb4i7m8i5mk018v7z25r4x1ypyprz4hnyrn7vk2983lhdfk", - "sha256bin64": "06rlxwbvp7rpw2rdpnjzl1cn7cr1rwlb20wz8r0cndjcjyzd3rjj", + "version": "107.0.5304.122", + "sha256": "0f2jdvlnp1s5ia01lnqk0ykqji2x4ab9g4kxk637n4csf0i1gj85", + "sha256bin64": null, "deps": { "gn": { "version": "2022-09-14", @@ -56,8 +56,8 @@ "sha256": "1c0dvpp4im1hf277bs5w7rgqxz3g2bax266i2g6smi3pl7a8jpnp" }, "ungoogled-patches": { - "rev": "107.0.5304.110-1", - "sha256": "14z9qi9i9l7kjx7gf74lzs63bpxqyd3wbqqpsvzvqgr2v0cgqahx" + "rev": "107.0.5304.122-1", + "sha256": "109j5jvsbj9dylj8prz7bkzc8czjv2c8bm0albwnkyxymcpd3w6p" } } } 2022-11-25T16:54:37 Old version 107.0.5304.110" not present in master derivation file with contents: { lib, mkChromiumDerivation , channel, chromiumVersionAtLeast , enableWideVine, ungoogled }: with lib; mkChromiumDerivation (base: rec { name = "chromium-browser"; packageName = "chromium"; buildTargets = [ "mksnapshot" "chrome_sandbox" "chrome" ]; outputs = ["out" "sandbox"]; sandboxExecutableName = "__chromium-suid-sandbox"; installPhase = '' mkdir -p "$libExecPath" cp -v "$buildPath/"*.so "$buildPath/"*.pak "$buildPath/"*.bin "$libExecPath/" cp -v "$buildPath/libvulkan.so.1" "$libExecPath/" cp -v "$buildPath/vk_swiftshader_icd.json" "$libExecPath/" cp -v "$buildPath/icudtl.dat" "$libExecPath/" cp -vLR "$buildPath/locales" "$buildPath/resources" "$libExecPath/" cp -v "$buildPath/chrome_crashpad_handler" "$libExecPath/" cp -v "$buildPath/chrome" "$libExecPath/$packageName" # Swiftshader # See https://stackoverflow.com/a/4264351/263061 for the find invocation. if [ -n "$(find "$buildPath/swiftshader/" -maxdepth 1 -name '*.so' -print -quit)" ]; then echo "Swiftshader files found; installing" mkdir -p "$libExecPath/swiftshader" cp -v "$buildPath/swiftshader/"*.so "$libExecPath/swiftshader/" else echo "Swiftshader files not found" fi mkdir -p "$sandbox/bin" cp -v "$buildPath/chrome_sandbox" "$sandbox/bin/${sandboxExecutableName}" mkdir -vp "$out/share/man/man1" cp -v "$buildPath/chrome.1" "$out/share/man/man1/$packageName.1" for icon_file in chrome/app/theme/chromium/product_logo_*[0-9].png; do num_and_suffix="''${icon_file##*logo_}" icon_size="''${num_and_suffix%.*}" expr "$icon_size" : "^[0-9][0-9]*$" || continue logo_output_prefix="$out/share/icons/hicolor" logo_output_path="$logo_output_prefix/''${icon_size}x''${icon_size}/apps" mkdir -vp "$logo_output_path" cp -v "$icon_file" "$logo_output_path/$packageName.png" done # Install Desktop Entry install -D chrome/installer/linux/common/desktop.template \ $out/share/applications/chromium-browser.desktop substituteInPlace $out/share/applications/chromium-browser.desktop \ --replace "@@MENUNAME@@" "Chromium" \ --replace "@@PACKAGE@@" "chromium" \ --replace "Exec=/usr/bin/@@USR_BIN_SYMLINK_NAME@@" "Exec=chromium" # Append more mime types to the end sed -i '/^MimeType=/ s,$,x-scheme-handler/webcal;x-scheme-handler/mailto;x-scheme-handler/about;x-scheme-handler/unknown,' \ $out/share/applications/chromium-browser.desktop # See https://github.com/NixOS/nixpkgs/issues/12433 sed -i \ -e '/\[Desktop Entry\]/a\' \ -e 'StartupWMClass=chromium-browser' \ $out/share/applications/chromium-browser.desktop ''; passthru = { inherit sandboxExecutableName; }; requiredSystemFeatures = [ "big-parallel" ]; meta = { description = "An open source web browser from Google" + optionalString ungoogled ", with dependencies on Google web services removed"; longDescription = '' Chromium is an open source web browser from Google that aims to build a safer, faster, and more stable way for all Internet users to experience the web. It has a minimalist user interface and provides the vast majority of source code for Google Chrome (which has some additional features). ''; homepage = if ungoogled then "https://github.com/Eloston/ungoogled-chromium" else "https://www.chromium.org/"; maintainers = with maintainers; if ungoogled then [ squalus primeos michaeladler ] else [ primeos thefloweringash ]; license = if enableWideVine then licenses.unfree else licenses.bsd3; platforms = platforms.linux; mainProgram = "chromium"; hydraPlatforms = if (channel == "stable" || channel == "ungoogled-chromium") then ["aarch64-linux" "x86_64-linux"] else []; timeout = 172800; # 48 hours (increased from the Hydra default of 10h) }; })