···168169- 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.
1700000171- The `services.ananicy.extraRules` option now has the type of `listOf attrs` instead of `string`.
172173- `buildVimPluginFrom2Nix` has been renamed to `buildVimPlugin`, which now
···168169- 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.
170171+- `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+175- The `services.ananicy.extraRules` option now has the type of `listOf attrs` instead of `string`.
176177- `buildVimPluginFrom2Nix` has been renamed to `buildVimPlugin`, which now
···151 """Maps a channel name to the corresponding main Nixpkgs attribute name."""
152 if channel_name == 'stable':
153 return 'chromium'
154- if channel_name == 'beta':
155- return 'chromiumBeta'
156- if channel_name == 'dev':
157- return 'chromiumDev'
158 if channel_name == 'ungoogled-chromium':
159 return 'ungoogled-chromium'
160 print(f'Error: Unexpected channel: {channel_name}', file=sys.stderr)
···204 # If we've already found a newer release for this channel, we're
205 # no longer interested in it.
206 if channel_name in channels:
0000207 continue
208209 # If we're back at the last release we used, we don't need to
···151 """Maps a channel name to the corresponding main Nixpkgs attribute name."""
152 if channel_name == 'stable':
153 return 'chromium'
0000154 if channel_name == 'ungoogled-chromium':
155 return 'ungoogled-chromium'
156 print(f'Error: Unexpected channel: {channel_name}', file=sys.stderr)
···200 # If we've already found a newer release for this channel, we're
201 # no longer interested in it.
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 continue
208209 # If we're back at the last release we used, we don't need to
···134 chefdk = throw "chefdk has been removed due to being deprecated upstream by Chef Workstation"; # Added 2023-03-22
135 chocolateDoom = chocolate-doom; # Added 2023-05-01
136 chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27
00137 citra = citra-nightly; # added 2022-05-17
138 clang-ocl = throw "'clang-ocl' has been replaced with 'rocmPackages.clang-ocl'"; # Added 2023-10-08
139 inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17
···317 godot-headless = throw "godot-headless has been renamed to godot3-headless to distinguish from version 4"; # Added 2023-07-16
318 godot-server = throw "godot-server has been renamed to godot3-server to distinguish from version 4"; # Added 2023-07-16
31900320 google-gflags = throw "'google-gflags' has been renamed to/replaced by 'gflags'"; # Converted to throw 2023-09-10
321 go-thumbnailer = thud; # Added 2023-09-21
322 gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10
···134 chefdk = throw "chefdk has been removed due to being deprecated upstream by Chef Workstation"; # Added 2023-03-22
135 chocolateDoom = chocolate-doom; # Added 2023-05-01
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
139 citra = citra-nightly; # added 2022-05-17
140 clang-ocl = throw "'clang-ocl' has been replaced with 'rocmPackages.clang-ocl'"; # Added 2023-10-08
141 inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17
···319 godot-headless = throw "godot-headless has been renamed to godot3-headless to distinguish from version 4"; # Added 2023-07-16
320 godot-server = throw "godot-server has been renamed to godot3-server to distinguish from version 4"; # Added 2023-07-16
321322+ 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
324 google-gflags = throw "'google-gflags' has been renamed to/replaced by 'gflags'"; # Converted to throw 2023-09-10
325 go-thumbnailer = thud; # Added 2023-09-21
326 gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10