Merge pull request #261870 from emilylange/drop-chromium-beta-dev

chromium{Beta,Dev},google-chrome-{beta,dev}: drop

authored by Emily and committed by GitHub 707696cc 0cbe9f69

+12 -38
+4
nixos/doc/manual/release-notes/rl-2311.section.md
··· 168 168 169 169 - The `users.users.<name>.passwordFile` has been renamed to `users.users.<name>.hashedPasswordFile` to avoid possible confusions. The option is in fact the file-based version of `hashedPassword`, not `password`, and expects a file containing the {manpage}`crypt(3)` hash of the user password. 170 170 171 + - `chromiumBeta` and `chromiumDev` have been removed due to the lack of maintenance in nixpkgs. Consider using `chromium` instead. 172 + 173 + - `google-chrome-beta` and `google-chrome-dev` have been removed due to the lack of maintenance in nixpkgs. Consider using `google-chrome` instead. 174 + 171 175 - The `services.ananicy.extraRules` option now has the type of `listOf attrs` instead of `string`. 172 176 173 177 - `buildVimPluginFrom2Nix` has been renamed to `buildVimPlugin`, which now
+4 -4
pkgs/applications/networking/browsers/chromium/update.py
··· 151 151 """Maps a channel name to the corresponding main Nixpkgs attribute name.""" 152 152 if channel_name == 'stable': 153 153 return 'chromium' 154 - if channel_name == 'beta': 155 - return 'chromiumBeta' 156 - if channel_name == 'dev': 157 - return 'chromiumDev' 158 154 if channel_name == 'ungoogled-chromium': 159 155 return 'ungoogled-chromium' 160 156 print(f'Error: Unexpected channel: {channel_name}', file=sys.stderr) ··· 204 200 # If we've already found a newer release for this channel, we're 205 201 # no longer interested in it. 206 202 if channel_name in channels: 203 + continue 204 + 205 + # We only look for channels that are listed in our version pin file. 206 + if channel_name not in last_channels: 207 207 continue 208 208 209 209 # If we're back at the last release we used, we don't need to
-26
pkgs/applications/networking/browsers/chromium/upstream-info.nix
··· 1 1 { 2 - beta = { 3 - deps = { 4 - gn = { 5 - rev = "811d332bd90551342c5cbd39e133aa276022d7f8"; 6 - hash = "sha256-WCq+PNkWxWpssUOQyQbAZ5l6k+hg+qGMsoaMG0Ybj0o="; 7 - url = "https://gn.googlesource.com/gn"; 8 - version = "2023-08-01"; 9 - }; 10 - }; 11 - hash = "sha256-spzY2u5Wk52BrKCk9aQOEp/gbppaGVLCQxXa+3JuajA="; 12 - hash_deb_amd64 = "sha256-eTeEeNa4JuCW81+SUAyrKi3S0/TJNTAoTktWQ0JsgYc="; 13 - version = "117.0.5938.22"; 14 - }; 15 - dev = { 16 - deps = { 17 - gn = { 18 - rev = "cc56a0f98bb34accd5323316e0292575ff17a5d4"; 19 - hash = "sha256-SwlET5h5xtDlQvlt8wbG73ZfUWJr4hlWc+uQsBH5x9M="; 20 - url = "https://gn.googlesource.com/gn"; 21 - version = "2023-08-10"; 22 - }; 23 - }; 24 - hash = "sha256-W0fZuvv9jz03ibQqB6MG45aw2zPklfxoFzZzr+kRuJk="; 25 - hash_deb_amd64 = "sha256-XWxRFLFxBqnvKcoB5HErwVbtHCGYRteLeTv44zVMwIc="; 26 - version = "118.0.5966.0"; 27 - }; 28 2 stable = { 29 3 chromedriver = { 30 4 hash_darwin = "sha256-ugsxRhIPtDD7Y4/PsIc8Apqrtyo4uiVKoLmtRvQaJ3k=";
+4
pkgs/top-level/aliases.nix
··· 134 134 chefdk = throw "chefdk has been removed due to being deprecated upstream by Chef Workstation"; # Added 2023-03-22 135 135 chocolateDoom = chocolate-doom; # Added 2023-05-01 136 136 chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27 137 + chromiumBeta = throw "'chromiumBeta' has been removed due to the lack of maintenance in nixpkgs. Consider using 'chromium' instead."; # Added 2023-10-18 138 + chromiumDev = throw "'chromiumDev' has been removed due to the lack of maintenance in nixpkgs. Consider using 'chromium' instead."; # Added 2023-10-18 137 139 citra = citra-nightly; # added 2022-05-17 138 140 clang-ocl = throw "'clang-ocl' has been replaced with 'rocmPackages.clang-ocl'"; # Added 2023-10-08 139 141 inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17 ··· 317 319 godot-headless = throw "godot-headless has been renamed to godot3-headless to distinguish from version 4"; # Added 2023-07-16 318 320 godot-server = throw "godot-server has been renamed to godot3-server to distinguish from version 4"; # Added 2023-07-16 319 321 322 + google-chrome-beta = throw "'google-chrome-beta' has been removed due to the lack of maintenance in nixpkgs. Consider using 'google-chrome' instead."; # Added 2023-10-18 323 + google-chrome-dev = throw "'google-chrome-dev' has been removed due to the lack of maintenance in nixpkgs. Consider using 'google-chrome' instead."; # Added 2023-10-18 320 324 google-gflags = throw "'google-gflags' has been renamed to/replaced by 'gflags'"; # Converted to throw 2023-09-10 321 325 go-thumbnailer = thud; # Added 2023-09-21 322 326 gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10
-8
pkgs/top-level/all-packages.nix
··· 30873 30873 30874 30874 chromium = callPackage ../applications/networking/browsers/chromium (config.chromium or {}); 30875 30875 30876 - chromiumBeta = lowPrio (chromium.override { channel = "beta"; }); 30877 - 30878 - chromiumDev = lowPrio (chromium.override { channel = "dev"; }); 30879 - 30880 30876 chuck = callPackage ../applications/audio/chuck { 30881 30877 inherit (darwin) DarwinTools; 30882 30878 inherit (darwin.apple_sdk.frameworks) AppKit Carbon CoreAudio CoreMIDI CoreServices Kernel MultitouchSupport; ··· 32276 32272 googleearth-pro = libsForQt5.callPackage ../applications/misc/googleearth-pro { }; 32277 32273 32278 32274 google-chrome = callPackage ../applications/networking/browsers/google-chrome { }; 32279 - 32280 - google-chrome-beta = google-chrome.override { chromium = chromiumBeta; channel = "beta"; }; 32281 - 32282 - google-chrome-dev = google-chrome.override { chromium = chromiumDev; channel = "dev"; }; 32283 32275 32284 32276 go-graft = callPackage ../applications/networking/go-graft { }; 32285 32277