···119119 # - "composite": a phrase with an "of" connective
120120 # See the `optionDescriptionPhrase` function.
121121 , descriptionClass ? null
122122- , # Function applied to each definition that should return true if
123123- # its type-correct, false otherwise.
122122+ , # DO NOT USE WITHOUT KNOWING WHAT YOU ARE DOING!
123123+ # Function applied to each definition that must return false when a definition
124124+ # does not match the type. It should not check more than the root of the value,
125125+ # because checking nested values reduces laziness, leading to unnecessary
126126+ # infinite recursions in the module system.
127127+ # Further checks of nested values should be performed by throwing in
128128+ # the merge function.
129129+ # Strict and deep type checking can be performed by calling lib.deepSeq on
130130+ # the merged value.
131131+ #
132132+ # See https://github.com/NixOS/nixpkgs/pull/6794 that introduced this change,
133133+ # https://github.com/NixOS/nixpkgs/pull/173568 and
134134+ # https://github.com/NixOS/nixpkgs/pull/168295 that attempted to revert this,
135135+ # https://github.com/NixOS/nixpkgs/issues/191124 and
136136+ # https://github.com/NixOS/nixos-search/issues/391 for what happens if you ignore
137137+ # this disclaimer.
124138 check ? (x: true)
125139 , # Merge a list of definitions together into a single value.
126140 # This function is called with two arguments: the location of
···212212 </listitem>
213213 <listitem>
214214 <para>
215215+ <link xlink:href="https://github.com/prymitive/kthxbye">kthxbye</link>,
216216+ an alert acknowledgement management daemon for Prometheus
217217+ Alertmanager. Available as
218218+ <link xlink:href="options.html#opt-services.kthxbye.enable">services.kthxbye</link>
219219+ </para>
220220+ </listitem>
221221+ <listitem>
222222+ <para>
215223 <link xlink:href="https://github.com/jtroo/kanata">kanata</link>,
216224 a tool to improve keyboard comfort and usability with advanced
217225 customization. Available as
···472480 riak package removed along with
473481 <literal>services.riak</literal> module, due to lack of
474482 maintainer to update the package.
483483+ </para>
484484+ </listitem>
485485+ <listitem>
486486+ <para>
487487+ The (previously undocumented) Nixpkgs configuration option
488488+ <literal>checkMeta</literal> now defaults to
489489+ <literal>true</literal>. This may cause evaluation failures
490490+ for packages with incorrect <literal>meta</literal> attribute.
475491 </para>
476492 </listitem>
477493 <listitem>
+5
nixos/doc/manual/release-notes/rl-2211.section.md
···7777- [infnoise](https://github.com/leetronics/infnoise), a hardware True Random Number Generator dongle.
7878 Available as [services.infnoise](options.html#opt-services.infnoise.enable).
79798080+- [kthxbye](https://github.com/prymitive/kthxbye), an alert acknowledgement management daemon for Prometheus Alertmanager. Available as [services.kthxbye](options.html#opt-services.kthxbye.enable)
8181+8082- [kanata](https://github.com/jtroo/kanata), a tool to improve keyboard comfort and usability with advanced customization.
8183 Available as [services.kanata](options.html#opt-services.kanata.enable).
8284···163165 Users who still wish to remain using GTK can do so by using `emacs-gtk`.
164166165167- riak package removed along with `services.riak` module, due to lack of maintainer to update the package.
168168+169169+- The (previously undocumented) Nixpkgs configuration option `checkMeta` now defaults to `true`. This may cause evaluation
170170+ failures for packages with incorrect `meta` attribute.
166171167172- xow package removed along with the `hardware.xow` module, due to the project being deprecated in favor of `xone`, which is available via the `hardware.xone` module.
168173
···11+{ config, pkgs, lib, ... }:
22+with lib;
33+44+let
55+ cfg = config.services.kthxbye;
66+in
77+88+{
99+ options.services.kthxbye = {
1010+ enable = mkEnableOption (mdDoc "kthxbye alert acknowledgement management daemon");
1111+1212+ package = mkOption {
1313+ type = types.package;
1414+ default = pkgs.kthxbye;
1515+ defaultText = literalExpression "pkgs.kthxbye";
1616+ description = mdDoc ''
1717+ The kthxbye package that should be used.
1818+ '';
1919+ };
2020+2121+ openFirewall = mkOption {
2222+ type = types.bool;
2323+ default = false;
2424+ description = mdDoc ''
2525+ Whether to open ports in the firewall needed for the daemon to function.
2626+ '';
2727+ };
2828+2929+ extraOptions = mkOption {
3030+ type = with types; listOf str;
3131+ default = [];
3232+ description = mdDoc ''
3333+ Extra command line options.
3434+3535+ Documentation can be found [here](https://github.com/prymitive/kthxbye/blob/main/README.md).
3636+ '';
3737+ example = literalExpression ''
3838+ [
3939+ "-extend-with-prefix 'ACK!'"
4040+ ];
4141+ '';
4242+ };
4343+4444+ alertmanager = {
4545+ timeout = mkOption {
4646+ type = types.str;
4747+ default = "1m0s";
4848+ description = mdDoc ''
4949+ Alertmanager request timeout duration in the [time.Duration](https://pkg.go.dev/time#ParseDuration) format.
5050+ '';
5151+ example = "30s";
5252+ };
5353+ uri = mkOption {
5454+ type = types.str;
5555+ default = "http://localhost:9093";
5656+ description = mdDoc ''
5757+ Alertmanager URI to use.
5858+ '';
5959+ example = "https://alertmanager.example.com";
6060+ };
6161+ };
6262+6363+ extendBy = mkOption {
6464+ type = types.str;
6565+ default = "15m0s";
6666+ description = mdDoc ''
6767+ Extend silences by adding DURATION seconds.
6868+6969+ DURATION should be provided in the [time.Duration](https://pkg.go.dev/time#ParseDuration) format.
7070+ '';
7171+ example = "6h0m0s";
7272+ };
7373+7474+ extendIfExpiringIn = mkOption {
7575+ type = types.str;
7676+ default = "5m0s";
7777+ description = mdDoc ''
7878+ Extend silences that are about to expire in the next DURATION seconds.
7979+8080+ DURATION should be provided in the [time.Duration](https://pkg.go.dev/time#ParseDuration) format.
8181+ '';
8282+ example = "1m0s";
8383+ };
8484+8585+ extendWithPrefix = mkOption {
8686+ type = types.str;
8787+ default = "ACK!";
8888+ description = mdDoc ''
8989+ Extend silences with comment starting with PREFIX string.
9090+ '';
9191+ example = "!perma-silence";
9292+ };
9393+9494+ interval = mkOption {
9595+ type = types.str;
9696+ default = "45s";
9797+ description = mdDoc ''
9898+ Silence check interval duration in the [time.Duration](https://pkg.go.dev/time#ParseDuration) format.
9999+ '';
100100+ example = "30s";
101101+ };
102102+103103+ listenAddress = mkOption {
104104+ type = types.str;
105105+ default = "0.0.0.0";
106106+ description = mdDoc ''
107107+ The address to listen on for HTTP requests.
108108+ '';
109109+ example = "127.0.0.1";
110110+ };
111111+112112+ port = mkOption {
113113+ type = types.port;
114114+ default = 8080;
115115+ description = mdDoc ''
116116+ The port to listen on for HTTP requests.
117117+ '';
118118+ };
119119+120120+ logJSON = mkOption {
121121+ type = types.bool;
122122+ default = false;
123123+ description = mdDoc ''
124124+ Format logged messages as JSON.
125125+ '';
126126+ };
127127+128128+ maxDuration = mkOption {
129129+ type = with types; nullOr str;
130130+ default = null;
131131+ description = mdDoc ''
132132+ Maximum duration of a silence, it won't be extended anymore after reaching it.
133133+134134+ Duration should be provided in the [time.Duration](https://pkg.go.dev/time#ParseDuration) format.
135135+ '';
136136+ example = "30d";
137137+ };
138138+ };
139139+140140+ config = mkIf cfg.enable {
141141+ systemd.services.kthxbye = {
142142+ description = "kthxbye Alertmanager ack management daemon";
143143+ wantedBy = [ "multi-user.target" ];
144144+ script = ''
145145+ ${cfg.package}/bin/kthxbye \
146146+ -alertmanager.timeout ${cfg.alertmanager.timeout} \
147147+ -alertmanager.uri ${cfg.alertmanager.uri} \
148148+ -extend-by ${cfg.extendBy} \
149149+ -extend-if-expiring-in ${cfg.extendIfExpiringIn} \
150150+ -extend-with-prefix ${cfg.extendWithPrefix} \
151151+ -interval ${cfg.interval} \
152152+ -listen ${cfg.listenAddress}:${toString cfg.port} \
153153+ ${optionalString cfg.logJSON "-log-json"} \
154154+ ${optionalString (cfg.maxDuration != null) "-max-duration ${cfg.maxDuration}"} \
155155+ ${concatStringsSep " " cfg.extraOptions}
156156+ '';
157157+ serviceConfig = {
158158+ Type = "simple";
159159+ DynamicUser = true;
160160+ Restart = "on-failure";
161161+ };
162162+ };
163163+164164+ networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [ cfg.port ];
165165+ };
166166+}
+10-8
nixos/modules/services/networking/v2ray.nix
···34343535 Either `configFile` or `config` must be specified.
36363737- See <https://www.v2fly.org/en_US/config/overview.html>.
3737+ See <https://www.v2fly.org/en_US/v5/config/overview.html>.
3838 '';
3939 };
4040···56565757 Either `configFile` or `config` must be specified.
58585959- See <https://www.v2fly.org/en_US/config/overview.html>.
5959+ See <https://www.v2fly.org/en_US/v5/config/overview.html>.
6060 '';
6161 };
6262 };
···7171 name = "v2ray.json";
7272 text = builtins.toJSON cfg.config;
7373 checkPhase = ''
7474- ${cfg.package}/bin/v2ray -test -config $out
7474+ ${cfg.package}/bin/v2ray test -c $out
7575 '';
7676 };
7777···8383 }
8484 ];
85858686+ environment.etc."v2ray/config.json".source = configFile;
8787+8888+ systemd.packages = [ cfg.package ];
8989+8690 systemd.services.v2ray = {
8787- description = "v2ray Daemon";
8888- after = [ "network.target" ];
9191+ restartTriggers = [ config.environment.etc."v2ray/config.json".source ];
9292+9393+ # Workaround: https://github.com/NixOS/nixpkgs/issues/81138
8994 wantedBy = [ "multi-user.target" ];
9090- serviceConfig = {
9191- ExecStart = "${cfg.package}/bin/v2ray -config ${configFile}";
9292- };
9395 };
9496 };
9597}
+4-4
nixos/modules/services/networking/yggdrasil.nix
···40404141 If the {option}`persistentKeys` is enabled then the
4242 keys that are generated during activation will override
4343- those in {option}`config` or
4343+ those in {option}`settings` or
4444 {option}`configFile`.
45454646 If no keys are specified then ephemeral keys are generated
4747 and the Yggdrasil interface will have a random IPv6 address
4848 each time the service is started, this is the default.
49495050- If both {option}`configFile` and {option}`config`
5050+ If both {option}`configFile` and {option}`settings`
5151 are supplied, they will be combined, with values from
5252 {option}`configFile` taking precedence.
5353···6262 example = "/run/keys/yggdrasil.conf";
6363 description = lib.mdDoc ''
6464 A file which contains JSON configuration for yggdrasil.
6565- See the {option}`config` option for more information.
6565+ See the {option}`settings` option for more information.
6666 '';
6767 };
6868···8181 discovery. The NixOS firewall blocks link-local
8282 communication, so in order to make local peering work you
8383 will also need to set `LinkLocalTCPPort` in your
8484- yggdrasil configuration ({option}`config` or
8484+ yggdrasil configuration ({option}`settings` or
8585 {option}`configFile`) to a port number other than 0,
8686 and then add that port to
8787 {option}`networking.firewall.allowedTCPPorts`.
+2-2
nixos/modules/services/networking/yggdrasil.xml
···2727 # The NixOS module will generate new keys and a new IPv6 address each time
2828 # it is started if persistentKeys is not enabled.
29293030- config = {
3030+ settings = {
3131 Peers = [
3232 # Yggdrasil will automatically connect and "peer" with other nodes it
3333 # discovers via link-local multicast annoucements. Unless this is the
···5858 services.yggdrasil = {
5959 enable = true;
6060 persistentKeys = true; # Maintain a fixed public key and IPv6 address.
6161- config = {
6161+ settings = {
6262 Peers = [ "tcp://1.2.3.4:1024" "tcp://1.2.3.5:1024" ];
6363 NodeInfo = {
6464 # This information is visible to the network.
+4-1
nixos/modules/services/web-apps/onlyoffice.nix
···252252 .rabbitmq.url = "${cfg.rabbitmqUrl}"
253253 ' /run/onlyoffice/config/default.json | sponge /run/onlyoffice/config/default.json
254254255255- if ! psql -d onlyoffice -c "SELECT 'task_result'::regclass;" >/dev/null; then
255255+ if psql -d onlyoffice -c "SELECT 'task_result'::regclass;" >/dev/null; then
256256+ psql -f ${cfg.package}/var/www/onlyoffice/documentserver/server/schema/postgresql/removetbl.sql
257257+ psql -f ${cfg.package}/var/www/onlyoffice/documentserver/server/schema/postgresql/createdb.sql
258258+ else
256259 psql -f ${cfg.package}/var/www/onlyoffice/documentserver/server/schema/postgresql/createdb.sql
257260 fi
258261 '';
···11+From fbf2ddd872db6a3640bc7d693356b99be9dd70f5 Mon Sep 17 00:00:00 2001
22+From: OPNA2608 <christoph.neidahl@gmail.com>
33+Date: Thu, 18 Aug 2022 20:12:07 +0200
44+Subject: [PATCH] Remove FetchContent usage
55+66+---
77+ CMakeLists.txt | 27 +++++----------------------
88+ 1 file changed, 5 insertions(+), 22 deletions(-)
99+1010+diff --git a/CMakeLists.txt b/CMakeLists.txt
1111+index 84c66a7..5234903 100644
1212+--- a/CMakeLists.txt
1313++++ b/CMakeLists.txt
1414+@@ -30,20 +30,9 @@ project(Fire VERSION 0.9.9)
1515+ # or
1616+ # add_subdirectory(JUCE) # If you've put JUCE in a subdirectory called JUCE
1717+1818+-include(FetchContent)
1919+-FetchContent_Declare(
2020+- JUCE
2121+- GIT_REPOSITORY https://github.com/juce-framework/JUCE.git
2222+- GIT_TAG 7.0.1
2323+-)
2424+-FetchContent_MakeAvailable(JUCE)
2525+-
2626+-FetchContent_Declare(
2727+- readerwriterqueue
2828+- GIT_REPOSITORY https://github.com/cameron314/readerwriterqueue
2929+- GIT_TAG v1.0.6
3030+-)
3131+-FetchContent_MakeAvailable(readerwriterqueue)
3232++add_subdirectory(JUCE EXCLUDE_FROM_ALL)
3333++
3434++add_subdirectory(readerwriterqueue EXCLUDE_FROM_ALL)
3535+3636+ # If you are building a VST2 or AAX plugin, CMake needs to be told where to find these SDKs on your
3737+ # system. This setup should be done before calling `juce_add_plugin`.
3838+@@ -172,13 +161,7 @@ set(TestFiles
3939+ test/CatchMain.cpp
4040+ test/PluginTest.cpp)
4141+4242+-# Download the tagged version of Catch2
4343+-Include(FetchContent)
4444+-FetchContent_Declare(
4545+- Catch2
4646+- GIT_REPOSITORY https://github.com/catchorg/Catch2.git
4747+- GIT_TAG v2.13.7)
4848+-FetchContent_MakeAvailable(Catch2)
4949++add_subdirectory(Catch2 EXCLUDE_FROM_ALL)
5050+5151+ # Setup the test executable, again C++ 20 please
5252+ add_executable(Tests ${TestFiles})
5353+@@ -199,4 +182,4 @@ source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/test PREFIX "" FILES ${TestFiles})
5454+ # We have to manually provide the source directory here for now
5555+ # https://github.com/catchorg/Catch2/issues/2026
5656+ include(${Catch2_SOURCE_DIR}/contrib/Catch.cmake)
5757+-catch_discover_tests(Tests)
5858+\ No newline at end of file
5959++catch_discover_tests(Tests)
6060+--
6161+2.36.0
6262+
···2323 hash = "sha256-gTvJI+brdEpdpbEcdQycqw15seI+k5dMDVrjY3v6i14=";
2424 };
25252626+ # FIXME: we currently manually inject a patch for react-scripts in here
2727+ # See https://github.com/navidrome/navidrome/pull/1767
2628 ui = callPackage ./ui {
2729 inherit src version;
2830 };
···13131414 getName = attrs: attrs.name or ("${attrs.pname or "«name-missing»"}-${attrs.version or "«version-missing»"}");
15151616- # See discussion at https://github.com/NixOS/nixpkgs/pull/25304#issuecomment-298385426
1717- # for why this defaults to false, but I (@copumpkin) want to default it to true soon.
1818- shouldCheckMeta = config.checkMeta or false;
1919-2016 allowUnfree = config.allowUnfree
2117 || builtins.getEnv "NIXPKGS_ALLOW_UNFREE" == "1";
2218···248244 isEnabled = lib.findFirst (x: x == reason) null showWarnings;
249245 in if isEnabled != null then builtins.trace msg true else true;
250246247247+248248+ # A shallow type check. We are using NixOS'
249249+ # option types here, which however have the major drawback
250250+ # of not providing full type checking (part of the type check is
251251+ # done by the module evaluation itself). Therefore, the checks
252252+ # will not recurse into attributes.
253253+ # We still provide the full type for documentation
254254+ # purposes and in the hope that they will be used eventually.
255255+ # See https://github.com/NixOS/nixpkgs/pull/191171 for an attempt
256256+ # to fix this, or mkOptionType in lib/types.nix for more information.
251257 metaTypes = with lib.types; rec {
252258 # These keys are documented
253259 description = str;
···297303 badPlatforms = platforms;
298304 };
299305306306+ # WARNING: this does not check inner values of the attribute, like list elements or nested attributes.
307307+ # See metaTypes above and mkOptionType in lib/types.nix for more information
300308 checkMetaAttr = k: v:
301309 if metaTypes?${k} then
302302- if metaTypes.${k}.check v then null else "key '${k}' has a value ${toString v} of an invalid type ${builtins.typeOf v}; expected ${metaTypes.${k}.description}"
303303- else "key '${k}' is unrecognized; expected one of: \n\t [${lib.concatMapStringsSep ", " (x: "'${x}'") (lib.attrNames metaTypes)}]";
304304- checkMeta = meta: if shouldCheckMeta then lib.remove null (lib.mapAttrsToList checkMetaAttr meta) else [];
310310+ if metaTypes.${k}.check v then
311311+ null
312312+ else
313313+ "key 'meta.${k}' has a value of invalid type ${builtins.typeOf v}; expected ${metaTypes.${k}.description}"
314314+ else
315315+ "key 'meta.${k}' is unrecognized; expected one of: \n\t [${lib.concatMapStringsSep ", " (x: "'${x}'") (lib.attrNames metaTypes)}]";
316316+ checkMeta = meta: if config.checkMeta then lib.remove null (lib.mapAttrsToList checkMetaAttr meta) else [];
305317306318 checkOutputsToInstall = attrs: let
307319 expectedOutputs = attrs.meta.outputsToInstall or [];
308320 actualOutputs = attrs.outputs or [ "out" ];
309321 missingOutputs = builtins.filter (output: ! builtins.elem output actualOutputs) expectedOutputs;
310310- in if shouldCheckMeta
322322+ in if config.checkMeta
311323 then builtins.length missingOutputs > 0
312324 else false;
313325···326338 unsupported = hasUnsupportedPlatform attrs;
327339 insecure = isMarkedInsecure attrs;
328340 }
329329- // (if hasDeniedUnfreeLicense attrs && !(hasAllowlistedLicense attrs) then
341341+ // (
342342+ # Check meta attribute types first, to make sure it is always called even when there are other issues
343343+ # Note that this is not a full type check and functions below still need to by careful about their inputs!
344344+ let res = checkMeta (attrs.meta or {}); in if res != [] then
345345+ { valid = "no"; reason = "unknown-meta"; errormsg = "has an invalid meta attrset:${lib.concatMapStrings (x: "\n\t - " + x) res}"; }
346346+ # --- Put checks that cannot be ignored here ---
347347+ else if checkOutputsToInstall attrs then
348348+ { valid = "no"; reason = "broken-outputs"; errormsg = "has invalid meta.outputsToInstall"; }
349349+350350+ # --- Put checks that can be ignored here ---
351351+ else if hasDeniedUnfreeLicense attrs && !(hasAllowlistedLicense attrs) then
330352 { valid = "no"; reason = "unfree"; errormsg = "has an unfree license (‘${showLicense attrs.meta.license}’)"; }
331353 else if hasBlocklistedLicense attrs then
332354 { valid = "no"; reason = "blocklisted"; errormsg = "has a blocklisted license (‘${showLicense attrs.meta.license}’)"; }
···338360 { valid = "no"; reason = "unsupported"; errormsg = "is not supported on ‘${hostPlatform.system}’"; }
339361 else if !(hasAllowedInsecure attrs) then
340362 { valid = "no"; reason = "insecure"; errormsg = "is marked as insecure"; }
341341- else if checkOutputsToInstall attrs then
342342- { valid = "no"; reason = "broken-outputs"; errormsg = "has invalid meta.outputsToInstall"; }
343343- else let res = checkMeta (attrs.meta or {}); in if res != [] then
344344- { valid = "no"; reason = "unknown-meta"; errormsg = "has an invalid meta attrset:${lib.concatMapStrings (x: "\n\t - " + x) res}"; }
363363+345364 # --- warnings ---
346365 # Please also update the type in /pkgs/top-level/config.nix alongside this.
347366 else if hasNoMaintainers attrs then
···4949 forceSystem = system: _:
5050 (import self.path { localSystem = { inherit system; }; });
51515252- _0x0 = throw "0x0 upstream is abandoned and no longer exists: https://gitlab.com/somasis/scripts/";
5252+ _0x0 = throw "0x0 upstream is abandoned and no longer exists: https://gitlab.com/somasis/scripts/"; # Added 2021-12-03
53535454 ### A ###
55555656 accounts-qt = throw "'accounts-qt' has been renamed to/replaced by 'libsForQt5.accounts-qt'"; # Converted to throw 2022-02-22
5757 adobeReader = throw "'adobeReader' has been renamed to/replaced by 'adobe-reader'"; # Converted to throw 2022-02-22
5858 adobe_flex_sdk = throw "'adobe_flex_sdk' has been renamed to/replaced by 'apache-flex-sdk'"; # Converted to throw 2022-02-22
5959- aesop = throw "aesop has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-05
6059 ag = throw "'ag' has been renamed to/replaced by 'silver-searcher'"; # Converted to throw 2022-02-22
6160 aircrackng = throw "'aircrackng' has been renamed to/replaced by 'aircrack-ng'"; # Converted to throw 2022-02-22
6261 airtame = throw "airtame has been removed due to being unmaintained"; # Added 2022-01-19
6362 alarm-clock-applet = throw "'alarm-clock-applet' has been abandoned upstream and depends on deprecated GNOME2/GTK2"; # Added 2022-06-16
6464- aleth = throw "aleth (previously packaged as cpp_ethereum) has been removed; abandoned upstream"; # Added 2020-11-30
6565- alsaLib = alsa-lib; # Added 2021-06-09
6666- alsaOss = alsa-oss; # Added 2021-06-10
6767- alsaPluginWrapper = alsa-plugins-wrapper; # Added 2021-06-10
6868- alsaPlugins = alsa-plugins; # Added 2021-06-10
6969- alsaTools = alsa-tools; # Added 2021-06-10
7070- alsaUtils = alsa-utils; # Added 2021-06-10
7171- amazon-glacier-cmd-interface = throw "amazon-glacier-cmd-interface has been removed due to it being unmaintained"; # Added 2020-10-30
6363+ alsaLib = throw "'alsaLib' has been renamed to/replaced by 'alsa-lib'"; # Converted to throw 2022-09-24
6464+ alsaOss = throw "'alsaOss' has been renamed to/replaced by 'alsa-oss'"; # Converted to throw 2022-09-24
6565+ alsaPluginWrapper = throw "'alsaPluginWrapper' has been renamed to/replaced by 'alsa-plugins-wrapper'"; # Converted to throw 2022-09-24
6666+ alsaPlugins = throw "'alsaPlugins' has been renamed to/replaced by 'alsa-plugins'"; # Converted to throw 2022-09-24
6767+ alsaTools = throw "'alsaTools' has been renamed to/replaced by 'alsa-tools'"; # Converted to throw 2022-09-24
6868+ alsaUtils = throw "'alsaUtils' has been renamed to/replaced by 'alsa-utils'"; # Converted to throw 2022-09-24
7269 aminal = throw "aminal was renamed to darktile"; # Added 2021-09-28
7370 ammonite-repl = throw "'ammonite-repl' has been renamed to/replaced by 'ammonite'"; # Converted to throw 2022-02-22
7471 amuleDaemon = throw "amuleDaemon was renamed to amule-daemon"; # Added 2022-02-11
7572 amuleGui = throw "amuleGui was renamed to amule-gui"; # Added 2022-02-11
7676- amsn = throw "amsn has been removed due to being unmaintained"; # Added 2020-12-09
7773 angelfish = libsForQt5.plasmaMobileGear.angelfish; # Added 2021-10-06
7874 ansible_2_11 = throw "Ansible 2.11 goes end of life in 2022/11 and can't be supported throughout the 22.05 release cycle"; # Added 2022-03-30
7975 ansible_2_10 = throw "Ansible 2.10 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30
8076 ansible_2_9 = throw "Ansible 2.9 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30
8181- antimicro = throw "antimicro has been removed as it was broken, see antimicrox instead"; # Added 2020-08-06
8277 antimicroX = antimicrox; # Added 2021-10-31
8378 ardour_5 = throw "ardour_5 has been removed. see https://github.com/NixOS/nixpkgs/issues/139549"; # Added 2021-09-28
8479 arduino_core = throw "'arduino_core' has been renamed to/replaced by 'arduino-core'"; # Converted to throw 2022-02-22
8585- arora = throw "arora has been removed"; # Added 2020-09-09
8680 asciidocFull = throw "'asciidocFull' has been renamed to/replaced by 'asciidoc-full'"; # Converted to throw 2022-02-22
8781 asn1c = throw "asn1c has been removed: deleted by upstream"; # Added 2022-01-07
8882 asterisk_13 = throw "asterisk_13: Asterisk 13 is end of life and has been removed"; # Added 2022-04-06
8989- asterisk_15 = throw "asterisk_15: Asterisk 15 is end of life and has been removed"; # Added 2020-10-07
9083 asterisk_17 = throw "asterisk_17: Asterisk 17 is end of life and has been removed"; # Added 2022-04-06
9184 at_spi2_atk = throw "'at_spi2_atk' has been renamed to/replaced by 'at-spi2-atk'"; # Converted to throw 2022-02-22
9285 at_spi2_core = throw "'at_spi2_core' has been renamed to/replaced by 'at-spi2-core'"; # Converted to throw 2022-02-22
9393- aucdtect = throw "aucdtect: Upstream no longer provides download urls"; # Added 2020-12-26
9486 automoc4 = throw "automoc4 has been removed from nixpkgs"; # Added 2022-05-30
9595- avldrums-lv2 = x42-avldrums; # Added 2020-03-29
9696- avxsynth = throw "avxsynth was removed because it was broken"; # Added 2021-05-18
8787+ avldrums-lv2 = throw "'avldrums-lv2' has been renamed to/replaced by 'x42-avldrums'"; # Converted to throw 2022-09-24
9788 awesome-4-0 = awesome; # Added 2022-05-05
9889 aws = throw "aws has been removed: abandoned by upstream. For the AWS CLI maintained by Amazon, see 'awscli' or 'awscli2'"; # Added 2022-09-21
9990 awless = throw "awless has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-05-30
10091 aws-okta = throw "aws-okta is on indefinite hiatus. See https://github.com/segmentio/aws-okta/issues/278"; # Added 2022-04-05;
10192 axoloti = throw "axoloti has been removed: abandoned by upstream"; # Added 2022-05-13
10293 azure-vhd-utils = throw "azure-vhd-utils has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03
103103- azureus = throw "azureus is now known as vuze and the version in nixpkgs was really outdated"; # Added 2021-08-02
1049410595 ### B ###
1069610797 badtouch = authoscope; # Project was renamed, added 20210626
10898 bar-xft = throw "'bar-xft' has been renamed to/replaced by 'lemonbar-xft'"; # Converted to throw 2022-02-22
10999 bashCompletion = throw "'bashCompletion' has been renamed to/replaced by 'bash-completion'"; # Converted to throw 2022-02-22
110110- bashInteractive_5 = bashInteractive; # Added 2021-08-20
111111- bash_5 = bash; # Added 2021-08-20
100100+ bashInteractive_5 = throw "'bashInteractive_5' has been renamed to/replaced by 'bashInteractive'"; # Converted to throw 2022-09-24
101101+ bash_5 = throw "'bash_5' has been renamed to/replaced by 'bash'"; # Converted to throw 2022-09-24
112102 bashburn = throw "bashburn has been removed: deleted by upstream"; # Added 2022-01-07
113113- bazaar = throw "bazaar has been deprecated by breezy"; # Added 2020-04-19
114114- bazaarTools = throw "bazaar has been deprecated by breezy"; # Added 2020-04-19
115103 bazel_0 = throw "bazel 0 is past end of life as it is not an lts version"; # Added 2022-05-09
116104 bazel_0_27 = throw "bazel 0.27 is past end of life as it is not an lts version"; # Added 2022-05-09
117105 bazel_0_29 = throw "bazel 0.29 is past end of life as it is not an lts version"; # Added 2022-05-09
118106 bazel_1 = throw "bazel 1 is past end of life as it is not an lts version"; # Added 2022-05-09
119119- bcat = throw "bcat has been removed because upstream is dead"; # Added 2021-08-22
120107 beetsExternalPlugins = throw "beetsExternalPlugins has been deprecated, use beetsPackages.$pluginname"; # Added 2022-05-07
121108 beret = throw "beret has been removed"; # Added 2021-11-16
122109 bin_replace_string = throw "bin_replace_string has been removed: deleted by upstream"; # Added 2022-01-07
123110 bird2 = bird; # Added 2022-02-21
124111 bird6 = throw "bird6 was dropped. Use bird instead, which has support for both ipv4/ipv6"; # Added 2022-02-21
125112 bitbucket-cli = throw "bitbucket-cli has been removed: abandoned by upstream"; # Added 2022-03-21
126126- bitsnbots = throw "bitsnbots has been removed because it was broken and upstream missing"; # Added 2021-08-22
127113 blastem = throw "blastem has been removed from nixpkgs as it would still require python2"; # Added 2022-01-01
128128- bluezFull = bluez; # Added 2019-12-03
129129- bomi = throw "bomi has been removed from nixpkgs since it was broken and abandoned upstream"; # Added 2020-12-10
114114+ bluezFull = throw "'bluezFull' has been renamed to/replaced by 'bluez'"; # Converted to throw 2022-09-24
130115 botan = throw "botan has been removed because it did not support a supported openssl version"; # added 2021-12-15
131131- bpftool = bpftools; # Added 2021-05-03
132132- brackets = throw "brackets has been removed, it was unmaintained and had open vulnerabilities"; # Added 2021-01-24
116116+ bpftool = throw "'bpftool' has been renamed to/replaced by 'bpftools'"; # Converted to throw 2022-09-24
133117 bridge_utils = throw "'bridge_utils' has been renamed to/replaced by 'bridge-utils'"; # Converted to throw 2022-02-22
134134- bro = zeek; # Added 2019-09-29
118118+ bro = throw "'bro' has been renamed to/replaced by 'zeek'"; # Converted to throw 2022-09-24
135119 btops = throw "btops has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02
136120 btrfsProgs = throw "'btrfsProgs' has been renamed to/replaced by 'btrfs-progs'"; # Converted to throw 2022-02-22
137121 bud = throw "bud has been removed: abandoned by upstream"; # Added 2022-03-14
···139123 buttersink = throw "buttersink has been removed: abandoned by upstream"; # Added 2022-04-05
140124141125 # bitwarden_rs renamed to vaultwarden with release 1.21.0 (2021-04-30)
142142- bitwarden_rs = vaultwarden;
143143- bitwarden_rs-mysql = vaultwarden-mysql;
144144- bitwarden_rs-postgresql = vaultwarden-postgresql;
145145- bitwarden_rs-sqlite = vaultwarden-sqlite;
146146- bitwarden_rs-vault = vaultwarden-vault;
126126+ bitwarden_rs = throw "'bitwarden_rs' has been renamed to/replaced by 'vaultwarden'"; # Converted to throw 2022-09-24
127127+ bitwarden_rs-mysql = throw "'bitwarden_rs-mysql' has been renamed to/replaced by 'vaultwarden-mysql'"; # Converted to throw 2022-09-24
128128+ bitwarden_rs-postgresql = throw "'bitwarden_rs-postgresql' has been renamed to/replaced by 'vaultwarden-postgresql'"; # Converted to throw 2022-09-24
129129+ bitwarden_rs-sqlite = throw "'bitwarden_rs-sqlite' has been renamed to/replaced by 'vaultwarden-sqlite'"; # Converted to throw 2022-09-24
130130+ bitwarden_rs-vault = throw "'bitwarden_rs-vault' has been renamed to/replaced by 'vaultwarden-vault'"; # Converted to throw 2022-09-24
147131148132149133 blink = throw "blink has been removed from nixpkgs, it was unmaintained and required python2 at the time of removal"; # Added 2022-01-12
150150- bs1770gain = throw "bs1770gain has been removed from nixpkgs, as it had no maintainer or reverse dependencies"; # Added 2021-01-02
151134 bsod = throw "bsod has been removed: deleted by upstream"; # Added 2022-01-07
152152- btc1 = throw "btc1 has been removed, it was abandoned by upstream"; # Added 2020-11-03
153135 buildPerlPackage = throw "'buildPerlPackage' has been renamed to/replaced by 'perlPackages.buildPerlPackage'"; # Converted to throw 2022-02-22
154136 buildkite-agent3 = throw "'buildkite-agent3' has been renamed to/replaced by 'buildkite-agent'"; # Converted to throw 2022-02-22
155137 bundler_HEAD = throw "'bundler_HEAD' has been renamed to/replaced by 'bundler'"; # Converted to throw 2022-02-22
···159141 ### C ###
160142161143 c14 = throw "c14 is deprecated and archived by upstream"; # Added 2022-04-10
162162- caddy1 = throw "caddy 1.x has been removed from nixpkgs, as it's unmaintained: https://github.com/caddyserver/caddy/blob/master/.github/SECURITY.md#supported-versions"; # Added 2020-10-02
163144 caffe2 = throw "caffe2 has been removed: subsumed under the PyTorch project"; # Added 2022-04-25
164164- calibre-py2 = throw "calibre-py2 has been removed from nixpkgs, as calibre has upgraded to python 3. Please use calibre as replacement"; # Added 2021-01-13
165165- calibre-py3 = throw "calibre-py3 has been removed from nixpkgs, as calibre's default python version is now 3. Please use calibre as replacement"; # Added 2021-01-13
166145 callPackage_i686 = pkgsi686Linux.callPackage;
167146 cantarell_fonts = throw "'cantarell_fonts' has been renamed to/replaced by 'cantarell-fonts'"; # Converted to throw 2022-02-22
168168- cargo-tree = throw "cargo-tree has been removed, use the builtin `cargo tree` command instead"; # Added 2020-08-20
169169- casperjs = throw "casperjs has been removed, it was abandoned by upstream and broken";
170170- catfish = xfce.catfish; # Added 2019-12-22
171171- ccnet = throw "ccnet has been removed because seafile does not depend on it anymore"; # Added 2021-03-25
147147+ catfish = throw "'catfish' has been renamed to/replaced by 'xfce.catfish'"; # Converted to throw 2022-09-24
172148 cde-gtk-theme = throw "cde-gtk-theme has been removed from nixpkgs as it shipped with python2 scripts that didn't work anymore"; # Added 2022-01-12
173173- cgmanager = throw "cgmanager was deprecated by lxc and therefore removed from nixpkgs"; # Added 2020-06-05
174149 checkbashism = throw "'checkbashism' has been renamed to/replaced by 'checkbashisms'"; # Converted to throw 2022-02-22
175175- chronos = throw "chronos has been removed from nixpkgs, as it was unmaintained"; # Added 2020-08-15
176150 chunkwm = throw "chunkwm has been removed: abandoned by upstream"; # Added 2022-01-07
177151 cifs_utils = throw "'cifs_utils' has been renamed to/replaced by 'cifs-utils'"; # Converted to throw 2022-02-22
178152 cipherscan = throw "cipherscan was removed from nixpkgs, as it was unmaintained"; # added 2021-12-11
···196170197171 clangAnalyzer = throw "'clangAnalyzer' has been renamed to/replaced by 'clang-analyzer'"; # Converted to throw 2022-02-22
198172 claws-mail-gtk2 = throw "claws-mail-gtk2 was removed to get rid of Python 2, please use claws-mail"; # Added 2021-12-05
199199- claws-mail-gtk3 = claws-mail; # Added 2021-07-10
173173+ claws-mail-gtk3 = throw "'claws-mail-gtk3' has been renamed to/replaced by 'claws-mail'"; # Converted to throw 2022-09-24
200174 clawsMail = throw "'clawsMail' has been renamed to/replaced by 'claws-mail'"; # Converted to throw 2022-02-22
201175 cldr-emoji-annotation = throw "'cldr-emoji-annotation' has been removed, as it was unmaintained; use 'cldr-annotations' instead"; # Added 2022-04-03
202176 clearsilver = throw "clearsilver has been removed: abandoned by upstream"; # Added 2022-03-15
203177 clementineUnfree = throw "clementineUnfree has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29
204178 clutter_gtk = throw "'clutter_gtk' has been renamed to/replaced by 'clutter-gtk'"; # Converted to throw 2022-02-22
205205- cmakeWithQt4Gui = throw "cmakeWithQt4Gui has been removed in favor of cmakeWithGui (Qt 5)"; # Added 2021-05
206206- codimd = hedgedoc; # Added 2020-11-29
179179+ codimd = throw "'codimd' has been renamed to/replaced by 'hedgedoc'"; # Converted to throw 2022-09-24
207180 inherit (libsForQt5.mauiPackages) communicator; # added 2022-05-17
208208- compton = picom; # Added 2019-12-02
181181+ compton = throw "'compton' has been renamed to/replaced by 'picom'"; # Converted to throw 2022-09-24
209182 compton-git = throw "'compton-git' has been renamed to/replaced by 'compton'"; # Converted to throw 2022-02-22
210210- concurrencykit = libck; # Added 2021-03
183183+ concurrencykit = throw "'concurrencykit' has been renamed to/replaced by 'libck'"; # Converted to throw 2022-09-24
211184 conntrack_tools = throw "'conntrack_tools' has been renamed to/replaced by 'conntrack-tools'"; # Converted to throw 2022-02-22
212185 container-linux-config-transpiler = throw "container-linux-config-transpiler is deprecated and archived by upstream"; # Added 2022-04-05
213186 cool-old-term = throw "'cool-old-term' has been renamed to/replaced by 'cool-retro-term'"; # Converted to throw 2022-02-22
214187 corsmisc = throw "corsmisc has been removed (upstream is gone)"; # Added 2022-01-24
215215- couchdb = throw "couchdb was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03
216216- couchdb2 = throw "couchdb2 was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03
217188 coreclr = throw "coreclr has been removed from nixpkgs, use dotnet-sdk instead"; # added 2022-06-12
218189 corgi = throw "corgi has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-02
219190 cpp-gsl = throw "'cpp-gsl' has been renamed to/replaced by 'microsoft_gsl'"; # Converted to throw 2022-02-22
220220- cpp_ethereum = throw "cpp_ethereum has been removed; abandoned upstream"; # Added 2020-11-30
221191 cpuminer-multi = throw "cpuminer-multi has been removed: deleted by upstream"; # Added 2022-01-07
222192 crafty = throw "crafty has been removed: deleted by upstream"; # Added 2022-01-07
223223- cryptol = throw "cryptol was removed due to prolonged broken build"; # Added 2020-08-21
224193 cryptpad = throw "cryptpad has been removed, because it was unmaintained in nixpkgs"; # Added 2022-07-04
225194 ctl = throw "ctl has been removed: abandoned by upstream"; # Added 2022-05-13
226195227196 # CUDA Toolkit
228228- cudatoolkit_6 = throw "cudatoolkit_6 has been removed in favor of newer versions"; # Added 2021-02-14
229229- cudatoolkit_65 = throw "cudatoolkit_65 has been removed in favor of newer versions"; # Added 2021-02-14
230230- cudatoolkit_7 = throw "cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14
231231- cudatoolkit_7_5 = throw "cudatoolkit_7_5 has been removed in favor of newer versions"; # Added 2021-02-14
232232- cudatoolkit_8 = throw "cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14
233233- cudatoolkit_9 = throw "cudatoolkit_9 has been removed in favor of newer versions"; # Added 2021-04-18
234234- cudatoolkit_9_0 = throw "cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18
235235- cudatoolkit_9_1 = throw "cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18
236236- cudatoolkit_9_2 = throw "cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18
237197 cudatoolkit_10 = throw "cudatoolkit_10 has been renamed to cudaPackages_10.cudatoolkit"; # Added 2022-04-04
238198 cudatoolkit_10_0 = throw "cudatoolkit_10_0 has been renamed to cudaPackages_10_0.cudatoolkit"; # Added 2022-04-04
239199 cudatoolkit_10_1 = throw "cudatoolkit_10_1 has been renamed to cudaPackages_10_1.cudatoolkit"; # Added 2022-04-04
···247207 cudatoolkit_11_6 = throw "cudatoolkit_11_6 has been renamed to cudaPackages_11_6.cudatoolkit"; # Added 2022-04-04
248208249209 cudnn = throw "cudnn is now part of cudaPackages*"; # Added 2022-04-04
250250- cudnn6_cudatoolkit_8 = throw "cudnn6_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14
251251- cudnn_cudatoolkit_7 = throw "cudnn_cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14
252210 cudnn_7_4_cudatoolkit_10_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04
253253- cudnn_cudatoolkit_7_5 = throw "cudnn_cudatoolkit_7_5 has been removed in favor of newer versions"; # Added 2021-02-14
254211 cudnn_7_6_cudatoolkit_10_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04
255212 cudnn_7_6_cudatoolkit_10_1 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04
256256- cudnn_cudatoolkit_8 = throw "cudnn_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14
257213 cudnn_8_1_cudatoolkit_10_2 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04
258214 cudnn_8_1_cudatoolkit_11_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04
259215 cudnn_8_1_cudatoolkit_11_1 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04
···268224 cudnn_8_3_cudatoolkit_11_5 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04
269225 cudnn_8_3_cudatoolkit_10 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04
270226 cudnn_8_3_cudatoolkit_11 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04
271271- cudnn_cudatoolkit_9 = throw "cudnn_cudatoolkit_9 has been removed in favor of newer versions"; # Added 2021-04-18
272272- cudnn_cudatoolkit_9_0 = throw "cudnn_cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18
273273- cudnn_cudatoolkit_9_1 = throw "cudnn_cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18
274274- cudnn_cudatoolkit_9_2 = throw "cudnn_cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18
275227 cura_stable = throw "cura_stable was removed because it was broken and used Python 2"; # added 2022-06-05
276228 curl_unix_socket = throw "curl_unix_socket has been dropped due to the lack of maintanence from upstream since 2015"; # Added 2022-06-02
277229 cutensor = throw "cutensor is now part of cudaPackages*"; # Added 2022-04-04
···285237 cutensor_cudatoolkit_11_3 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04
286238 cutensor_cudatoolkit_11_4 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04
287239288288- cloud-print-connector = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006";
289289- cquery = throw "cquery has been removed because it is abandoned by upstream. Consider switching to clangd or ccls instead"; # Added 2020-06-15
290290- cups-googlecloudprint = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006";
240240+ cloud-print-connector = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; # Added 2021-11-03
241241+ cups-googlecloudprint = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; # Added 2021-11-03
291242 cupsBjnp = throw "'cupsBjnp' has been renamed to/replaced by 'cups-bjnp'"; # Converted to throw 2022-02-22
292243 cups_filters = throw "'cups_filters' has been renamed to/replaced by 'cups-filters'"; # Converted to throw 2022-02-22
293244 curlcpp = throw "curlcpp has been removed, no active maintainers and no usage within nixpkgs"; # Added 2022-05-10
294245 curaByDagoma = throw "curaByDagoma has been removed from nixpkgs, because it was unmaintained and dependent on python2 packages"; # Added 2022-01-12
295246 curaLulzbot = throw "curaLulzbot has been removed due to insufficient upstream support for a modern dependency chain"; # Added 2021-10-23
296247 cv = throw "'cv' has been renamed to/replaced by 'progress'"; # Converted to throw 2022-02-22
297297- cvs_fast_export = cvs-fast-export; # Added 2021-06-10
248248+ cvs_fast_export = throw "'cvs_fast_export' has been renamed to/replaced by 'cvs-fast-export'"; # Converted to throw 2022-09-24
298249299250 ### D ###
300251301252 d1x_rebirth = throw "'d1x_rebirth' has been renamed to/replaced by 'dxx-rebirth'"; # Converted to throw 2022-02-22
302253 d2x_rebirth = throw "'d2x_rebirth' has been renamed to/replaced by 'dxx-rebirth'"; # Converted to throw 2022-02-22
303303- dart_dev = throw "Non-stable versions of Dart have been removed"; # Added 2020-01-15
304304- dart_old = throw "Non-stable versions of Dart have been removed"; # Added 2020-01-15
305305- dart_stable = dart; # Added 2020-01-15
254254+ dart_stable = throw "'dart_stable' has been renamed to/replaced by 'dart'"; # Converted to throw 2022-09-24
306255 dat = nodePackages.dat;
307256 dashpay = throw "'dashpay' has been removed because it was unmaintained"; # Added 2022-05-12
308257 dbus_daemon = throw "'dbus_daemon' has been renamed to/replaced by 'dbus.daemon'"; # Converted to throw 2022-02-22
309258 dbus_glib = throw "'dbus_glib' has been renamed to/replaced by 'dbus-glib'"; # Converted to throw 2022-02-22
310259 dbus_libs = throw "'dbus_libs' has been renamed to/replaced by 'dbus'"; # Converted to throw 2022-02-22
311260 dbus_tools = throw "'dbus_tools' has been renamed to/replaced by 'dbus.out'"; # Converted to throw 2022-02-22
312312- dbvisualizer = throw "dbvisualizer has been removed from nixpkgs, as it's unmaintained"; # Added 2020-09-20
313261 dd-agent = throw "dd-agent has been removed in favor of the newer datadog-agent"; # Added 2022-04-26
314262 ddar = throw "ddar has been removed: abandoned by upstream"; # Added 2022-03-18
315263 deadbeef-mpris2-plugin = throw "'deadbeef-mpris2-plugin' has been renamed to/replaced by 'deadbeefPlugins.mpris2'"; # Converted to throw 2022-02-22
···317265318266 debian_devscripts = throw "'debian_devscripts' has been renamed to/replaced by 'debian-devscripts'"; # Converted to throw 2022-02-22
319267 debugedit-unstable = debugedit; # Added 2021-11-22
320320- deepin = throw "deepin was a work in progress and it has been canceled and removed https://github.com/NixOS/nixpkgs/issues/94870"; # added 2020-08-31
321321- deepspeech = throw "deepspeech was removed in favor of stt. https://github.com/NixOS/nixpkgs/issues/119496"; # added 2021-05-05
322268 deisctl = throw "deisctl was removed ; the service does not exist anymore"; # added 2022-02-06
323269 deis = throw "deis was removed ; the service does not exist anymore"; # added 2022-02-06
324324- deltachat-electron = deltachat-desktop; # added 2021-07-18
325325-326326- deluge-1_x = throw ''
327327- Deluge 1.x (deluge-1_x) is no longer supported.
328328- Please use Deluge 2.x (deluge-2_x) instead, for example:
329329-330330- services.deluge.package = pkgs.deluge-2_x;
331331-332332- Note that it is NOT possible to switch back to Deluge 1.x after this change.
333333- ''; # Added 2021-08-18
334334-270270+ deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2022-09-24
335271 demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18
336272 desktop_file_utils = throw "'desktop_file_utils' has been renamed to/replaced by 'desktop-file-utils'"; # Converted to throw 2022-02-22
337273 devicemapper = throw "'devicemapper' has been renamed to/replaced by 'lvm2'"; # Converted to throw 2022-02-22
···342278 disper = throw "disper has been removed: abandoned by upstream"; # Added 2022-03-18
343279 displaycal = throw "displaycal has been removed from nixpkgs, as it hasn't migrated to python3"; # Added 2022-01-12
344280 dmtx = throw "'dmtx' has been renamed to/replaced by 'dmtx-utils'"; # Converted to throw 2022-02-22
345345- dnnl = oneDNN; # Added 2020-04-22
281281+ dnnl = throw "'dnnl' has been renamed to/replaced by 'oneDNN'"; # Converted to throw 2022-09-24
346282 docbook5_xsl = throw "'docbook5_xsl' has been renamed to/replaced by 'docbook_xsl_ns'"; # Converted to throw 2022-02-22
347347- docbookrx = throw "docbookrx has been removed since it was unmaintained"; # Added 2021-01-12
348283 docbook_xml_xslt = throw "'docbook_xml_xslt' has been renamed to/replaced by 'docbook_xsl'"; # Converted to throw 2022-02-22
349284 doh-proxy = throw "doh-proxy has been removed because upstream abandoned it and its depedencies where removed."; # Added 2022-03-30
350285 docker_compose = throw "'docker_compose' has been renamed to/replaced by 'docker-compose'"; # Converted to throw 2022-02-22
···355290 dotnet-netcore = dotnet-runtime; # Added 2021-10-07
356291 double_conversion = throw "'double_conversion' has been renamed to/replaced by 'double-conversion'"; # Converted to throw 2022-02-22
357292 dragon-drop = throw "'dragon-drop' has been removed in favor of 'xdragon'"; # Added 2022-04-10;
358358- draftsight = throw "draftsight has been removed, no longer available as freeware"; # Added 2020-08-14
359293 dust = throw "dust has been removed: abandoned by upstream"; # Added 2022-04-21
360360- dvb_apps = throw "dvb_apps has been removed"; # Added 2020-11-03
361294 dwarf_fortress = throw "'dwarf_fortress' has been renamed to/replaced by 'dwarf-fortress'"; # Converted to throw 2022-02-22
362362- dwm-git = throw "dwm-git has been removed from nixpkgs, as it had no updates for 2 years not serving it's purpose"; # Added 2021-02-07
363363- dylibbundler = macdylibbundler; # Added 2021-04-24
295295+ dylibbundler = throw "'dylibbundler' has been renamed to/replaced by 'macdylibbundler'"; # Converted to throw 2022-09-24
364296365297 ### E ###
366298···368300 ec2_ami_tools = ec2-ami-tools; # Added 2021-10-08
369301 ec2_api_tools = ec2-api-tools; # Added 2021-10-08
370302 ec2-utils = amazon-ec2-utils; # Added 2022-02-01
371371- elasticmq = throw "elasticmq has been removed in favour of elasticmq-server-bin"; # Added 2021-01-17
372372- elasticsearch7-oss = throw "elasticsearch7-oss has been removed, as the distribution is no longer provided by upstream. https://github.com/NixOS/nixpkgs/pull/114456"; # Added 2021-06-09
373303374304 # Electron
375305 electron_3 = throw "electron_3 has been removed in favor of newer versions"; # added 2022-01-06
···387317 emacs28WithPackages = emacs28.pkgs.withPackages; # Added 2021-10-04
388318 emacsNativeComp = emacs28NativeComp; # Added 2022-06-08
389319 emacsPackagesGen = throw "'emacsPackagesGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22
390390- emacsPackagesNg = emacs.pkgs; # Added 2019-08-07
391391- emacsPackagesNgFor = emacsPackagesFor; # Added 2019-08-07
320320+ emacsPackagesNg = throw "'emacsPackagesNg' has been renamed to/replaced by 'emacs.pkgs'"; # Converted to throw 2022-09-24
321321+ emacsPackagesNgFor = throw "'emacsPackagesNgFor' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-09-24
392322 emacsPackagesNgGen = throw "'emacsPackagesNgGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22
393393- emacsWithPackages = emacs.pkgs.withPackages; # Added 2020-12-18
323323+ emacsWithPackages = throw "'emacsWithPackages' has been renamed to/replaced by 'emacs.pkgs.withPackages'"; # Converted to throw 2022-09-24
394324395325 enblendenfuse = throw "'enblendenfuse' has been renamed to/replaced by 'enblend-enfuse'"; # Converted to throw 2022-02-22
396326 encryptr = throw "encryptr was removed because it reached end of life"; # Added 2022-02-06
397327 envdir = throw "envdir has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03
398398- envelope = throw "envelope has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-05
399328 epoxy = libepoxy; # Added 2021-11-11
400329 epsxe = throw "epsxe has been removed from nixpkgs, as it was unmaintained."; # added 2021-12-15
401401- esniper = throw "esniper has been removed because upstream no longer maintains it (and it no longer works)"; # Added 2021-04-12
402330 etcdctl = throw "'etcdctl' has been renamed to/replaced by 'etcd'"; # Converted to throw 2022-02-22
403331 eteroj.lv2 = throw "'eteroj.lv2' has been renamed to/replaced by 'open-music-kontrollers.eteroj'"; # Added 2022-03-09
404332 euca2tools = throw "euca2ools has been removed because it is unmaintained upstream and still uses python2"; # Added 2022-01-01
···408336409337 ### F ###
410338411411- facette = throw "facette has been removed"; # Added 2020-01-06
412412- fast-neural-doodle = throw "fast-neural-doodle has been removed, as the upstream project has been abandoned"; # Added 2020-03-28
413413- fastnlo = fastnlo_toolkit; # Added 2021-04-24
339339+ fastnlo = throw "'fastnlo' has been renamed to/replaced by 'fastnlo_toolkit'"; # Converted to throw 2022-09-24
414340 fbreader = throw "fbreader has been removed, as the upstream project has been archived"; # Added 2022-05-26
415415- fedora-coreos-config-transpiler = throw "fedora-coreos-config-transpiler has been renamed to 'butane'"; # Added 2021-04-13
416341 feedreader = throw "feedreader is no longer activily maintained since 2019. The developer is working on a spiritual successor called NewsFlash."; # Added 2022-05-03
417417- fetchFromGithub = throw "You meant fetchFromGitHub, with a capital H";
342342+ inherit (luaPackages) fennel; # Added 2022-09-24
343343+ fetchFromGithub = throw "You meant fetchFromGitHub, with a capital H"; # preserve
418344 ffadoFull = throw "'ffadoFull' has been renamed to/replaced by 'ffado'"; # Converted to throw 2022-02-22
419345 ffmpeg-sixel = throw "ffmpeg-sixel has been removed, because it was an outdated/unmaintained fork of ffmpeg"; # Added 2022-03-23";
420346 ffmpeg_3 = throw "ffmpeg_3 was removed from nixpkgs, because it was an outdated and insecure release"; # added 2022-01-17
421421- finger_bsd = bsd-finger;
422422- fingerd_bsd = bsd-fingerd;
423423- firefox-esr-68 = throw "Firefox 68 ESR was removed because it reached end of life with its final release 68.12esr on 2020-08-25";
347347+ finger_bsd = bsd-finger; # Added 2022-03-14
348348+ fingerd_bsd = bsd-fingerd; # Added 2022-03-14
424349 firefox-esr-wrapper = throw "'firefox-esr-wrapper' has been renamed to/replaced by 'firefox-esr'"; # Converted to throw 2022-02-22
425350 firefoxWrapper = throw "'firefoxWrapper' has been renamed to/replaced by 'firefox'"; # Converted to throw 2022-02-22
426351 firefox-wrapper = throw "'firefox-wrapper' has been renamed to/replaced by 'firefox'"; # Converted to throw 2022-02-22
427352 firmwareLinuxNonfree = linux-firmware; # Added 2022-01-09
428428- fish-foreign-env = throw "fish-foreign-env has been replaced with fishPlugins.foreign-env"; # Added 2020-12-29, modified 2021-01-10
429353 fishfight = jumpy; # Added 2022-08-03
430354 flameGraph = throw "'flameGraph' has been renamed to/replaced by 'flamegraph'"; # Converted to throw 2022-02-22
431431- flashplayer-standalone-debugger = throw "flashplayer-standalone-debugger has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07
432432- flashplayer-standalone = throw "flashplayer-standalone has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07
433433- flashplayer = throw "flashplayer has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07
434355 flashtool = throw "flashtool was removed from nixpkgs, because the download is down for copyright reasons and the site looks very fishy"; # Added 2021-06-31
435356 flatbuffers_1_12 = throw "FlatBuffers version 1.12 has been removed, because upstream no longer maintains it"; # Added 2022-05-12
436357 flatbuffers_2_0 = flatbuffers; # Added 2022-05-12
437437- flink_1_5 = throw "flink_1_5 was removed, use flink instead"; # Added 2021-01-25
438438- flutter-beta = throw "Non-stable versions of Flutter have been removed. You can use flutterPackages.mkFlutter to generate a package for other Flutter versions"; # Added 2020-01-15
439439- flutter-dev = throw "Non-stable versions of Flutter have been removed. You can use flutterPackages.mkFlutter to generate a package for other Flutter versions"; # Added 2020-01-15
440440- flvtool2 = throw "flvtool2 has been removed"; # Added 2020-11-03
441358 fme = throw "fme was removed, because it is old and uses Glade, a discontinued library"; # Added 2022-01-26
442442- foldingathome = fahclient; # Added 2020-09-03
359359+ foldingathome = throw "'foldingathome' has been renamed to/replaced by 'fahclient'"; # Converted to throw 2022-09-24
443360 font-awesome-ttf = throw "'font-awesome-ttf' has been renamed to/replaced by 'font-awesome'"; # Converted to throw 2022-02-22
444444-445445- fontconfig-penultimate = throw ''
446446- fontconfig-penultimate has been removed.
447447- It was a fork of the abandoned fontconfig-ultimate.
448448- ''; # Added 2020-07-21
449449-450450- fontconfig_210 = throw ''
451451- fontconfig 2.10.x hasn't had a release in years, is vulnerable to CVE-2016-5384
452452- and has only been used for old fontconfig caches.
453453- '';
454454-455361 foomatic_filters = throw "'foomatic_filters' has been renamed to/replaced by 'foomatic-filters'"; # Converted to throw 2022-02-22
456362 fscryptctl-experimental = throw "The package fscryptctl-experimental has been removed. Please switch to fscryptctl"; # Added 2021-11-07
457457- fsharp41 = throw "fsharp41 has been removed, please use dotnet-sdk_5 or later";
458363 fslint = throw "fslint has been removed: end of life. Upstream recommends using czkawka (https://qarmin.github.io/czkawka/) instead"; # Added 2022-01-15
459364 fuse_exfat = throw "'fuse_exfat' has been renamed to/replaced by 'exfat'"; # Converted to throw 2022-02-22
460365 fuseki = throw "'fuseki' has been renamed to/replaced by 'apache-jena-fuseki'"; # Converted to throw 2022-02-22
461366 fuse2fs = if stdenv.isLinux then e2fsprogs.fuse2fs else null; # Added 2022-03-27 preserve, reason: convenience, arch has a package named fuse2fs too.
462462- fwupdate = throw "fwupdate was merged into fwupd"; # Added 2020-05-19
463367464368 ### G ###
465369466466- g4py = python3Packages.geant4; # Added 2020-06-06
467467- gaia = throw "gaia has been removed because it seems abandoned upstream and uses no longer supported dependencies"; # Added 2020-06-06
370370+ g4py = throw "'g4py' has been renamed to/replaced by 'python3Packages.geant4'"; # Converted to throw 2022-09-24
468371 gammy = throw "'gammy' is deprecated upstream and has been replaced by 'gummy'"; # Added 2022-09-03
469372 gawp = throw "gawp has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02
470470- gdal_1_11 = throw "gdal_1_11 was removed. Use gdal instead"; # Added 2021-04-03
471373 gdb-multitarget = throw "'gdb-multitarget' has been renamed to/replaced by 'gdb'"; # Converted to throw 2022-02-22
472374 gdk_pixbuf = throw "'gdk_pixbuf' has been renamed to/replaced by 'gdk-pixbuf'"; # Converted to throw 2022-02-22
473375 getmail = throw "getmail has been removed from nixpkgs, migrate to getmail6"; # Added 2022-01-12
474376 gettextWithExpat = throw "'gettextWithExpat' has been renamed to/replaced by 'gettext'"; # Converted to throw 2022-02-22
475475- gfm = throw "gfm has been removed"; # Added 2021-01-15
476377 giblib = throw " giblib has been removed from nixpkgs because upstream is gone"; # Added 2022-01-23
477477- giflib_4_1 = throw "giflib_4_1 has been removed; use giflib instead"; # Added 2020-02-12
478378 git-annex-remote-b2 = throw "git-annex-remote-b2 has been dropped due to the lack of maintanence from upstream since 2016"; # Added 2022-06-02
479379 git-bz = throw "giz-bz has been removed from nixpkgs as it is stuck on python2"; # Added 2022-01-01
480380481381 gitAndTools = self // {
482482- darcsToGit = darcs-to-git;
483483- gitAnnex = git-annex;
484484- gitBrunch = git-brunch;
485485- gitFastExport = git-fast-export;
486486- gitRemoteGcrypt = git-remote-gcrypt;
487487- svn_all_fast_export = svn-all-fast-export;
488488- topGit = top-git;
489489- }; # Added 2021-01-14
382382+ darcsToGit = throw "'gitAndTools.darcsToGit' has been renamed to 'darcs-to-git'"; # Converted to throw 2022-09-24
383383+ gitAnnex = throw "'gitAndTools.gitAnnex' has been renamed to 'git-annex'"; # Converted to throw 2022-09-24
384384+ gitBrunch = throw "'gitAndTools.gitBrunch' has been renamed to 'git-brunch'"; # Converted to throw 2022-09-24
385385+ gitFastExport = throw "'gitAndTools.gitFastExport' has been renamed to 'git-fast-export'"; # Converted to throw 2022-09-24
386386+ gitRemoteGcrypt = throw "'gitAndTools.gitRemoteGcrypt' has been renamed to 'git-remote-gcrypt'"; # Converted to throw 2022-09-24
387387+ svn_all_fast_export = throw "'gitAndTools.svn_all_fast_export' has been renamed to 'svn-all-fast-export'"; # Converted to throw 2022-09-24
388388+ topGit = throw "'gitAndTools.topGit' has been renamed to 'top-git'"; # Converted to throw 2022-09-24
389389+ };
490390491391 gitin = throw "gitin has been remove because it was unmaintained and depended on an insecure version of libgit2"; # Added 2021-12-07
492392 gitinspector = throw "gitinspector has been removed because it doesn't work with python3"; # Added 2022-01-12
493393 gksu = throw "gksu has been removed"; # Added 2022-01-16
494394 glib_networking = throw "'glib_networking' has been renamed to/replaced by 'glib-networking'"; # Converted to throw 2022-02-22
495395 glimpse = throw "glimpse was removed, as the project was discontinued. You can use gimp instead."; # Added 2022-07-11
496496- gmailieer = lieer; # Added 2020-04-19
497497- gmic_krita_qt = gmic-qt-krita; # Added 2019-09-07
498498- gmvault = throw "gmvault has been removed because it is unmaintained, mostly broken, and insecure"; # Added 2021-03-08
396396+ gmailieer = throw "'gmailieer' has been renamed to/replaced by 'lieer'"; # Converted to throw 2022-09-24
397397+ gmic_krita_qt = throw "'gmic_krita_qt' has been renamed to/replaced by 'gmic-qt-krita'"; # Converted to throw 2022-09-24
499398 gnash = throw "gnash has been removed; broken and abandoned upstream"; # added 2022-02-06
500399 gnome-breeze = throw "gnome-breeze has been removed, use libsForQt5.breeze-gtk instead"; # Added 2022-04-22
501400 gnome-firmware-updater = gnome-firmware; # added 2022-04-14
502401 gnome-passwordsafe = gnome-secrets; # added 2022-01-30
503503- gnome-mpv = celluloid; # Added 2019-08-22
402402+ gnome-mpv = throw "'gnome-mpv' has been renamed to/replaced by 'celluloid'"; # Converted to throw 2022-09-24
504403 gnome-sharp = throw "gnome-sharp has been removed from nixpkgs"; # Added 2022-01-15
505404 gnome-themes-standard = throw "'gnome-themes-standard' has been renamed to/replaced by 'gnome-themes-extra'"; # Converted to throw 2022-02-22
506506- gnome_user_docs = gnome-user-docs; # Added 2019-11-20
405405+ gnome_user_docs = throw "'gnome_user_docs' has been renamed to/replaced by 'gnome-user-docs'"; # Converted to throw 2022-09-24
507406 gnome_doc_utils = throw "'gnome_doc_utils' has been renamed to/replaced by 'gnome-doc-utils'"; # Converted to throw 2022-02-22
508407 gnome_themes_standard = throw "'gnome_themes_standard' has been renamed to/replaced by 'gnome-themes-standard'"; # Converted to throw 2022-02-22
509509-510510- gnuradio-with-packages = gnuradio3_7.override {
511511- extraPackages = lib.attrVals [
512512- "osmosdr" "ais" "gsm" "nacl" "rds" "limesdr"
513513- ] gnuradio3_7Packages;
514514- }; # Added 2020-10-16
515515-516516- gmock = gtest; # moved from top-level 2021-03-14
517517-518518- gnome3 = gnome; # Added 2021-05-07
519519- gnupg20 = throw "gnupg20 has been removed from nixpkgs as upstream dropped support on 2017-12-31";# Added 2020-07-12
408408+ gmock = throw "'gmock' has been renamed to/replaced by 'gtest'"; # Converted to throw 2022-09-24
409409+ gnome3 = throw "'gnome3' has been renamed to/replaced by 'gnome'"; # Converted to throw 2022-09-24
520410 gnuradio3_7 = throw "gnuradio3_7 has been removed because it required Python 2"; # Added 2022-01-16
521521- gnuradio-ais = gnuradio3_7.pkgs.ais; # Added 2019-05-27, changed 2020-10-16
522522- gnuradio-gsm = gnuradio3_7.pkgs.gsm; # Added 2019-05-27, changed 2020-10-16
523523- gnuradio-limesdr = gnuradio3_7.pkgs.limesdr; # Added 2019-05-27, changed 2020-10-16
524524- gnuradio-nacl = gnuradio3_7.pkgs.nacl; # Added 2019-05-27, changed 2020-10-16
525525- gnuradio-osmosdr = gnuradio3_7.pkgs.osmosdr; # Added 2019-05-27, changed 2020-10-16
526526- gnuradio-rds = gnuradio3_7.pkgs.rds; # Added 2019-05-27, changed 2020-10-16
411411+ gnuradio-ais = throw "'gnuradio-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2022-09-24
412412+ gnuradio-gsm = throw "'gnuradio-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2022-09-24
413413+ gnuradio-limesdr = throw "'gnuradio-limesdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.limesdr'"; # Converted to throw 2022-09-24
414414+ gnuradio-nacl = throw "'gnuradio-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2022-09-24
415415+ gnuradio-osmosdr = throw "'gnuradio-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2022-09-24
416416+ gnuradio-rds = throw "'gnuradio-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2022-09-24
527417 gnustep-make = throw "'gnustep-make' has been renamed to/replaced by 'gnustep.make'"; # Converted to throw 2022-02-22
528528- gnuvd = throw "gnuvd was removed because the backend service is missing"; # Added 2020-01-14
529529- gobby5 = gobby; # Added 2021-02-01
418418+ gobby5 = throw "'gobby5' has been renamed to/replaced by 'gobby'"; # Converted to throw 2022-09-24
530419 gobjectIntrospection = throw "'gobjectIntrospection' has been renamed to/replaced by 'gobject-introspection'"; # Converted to throw 2022-02-22
531420 gogoclient = throw "gogoclient has been removed, because it was unmaintained"; # Added 2021-12-15
532421 goklp = throw "goklp has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02
533422 golly-beta = throw "golly-beta has been removed: use golly instead"; # Added 2022-03-21
534423 goimports = throw "'goimports' has been renamed to/replaced by 'gotools'"; # Converted to throw 2022-02-22
535535- gometalinter = throw "gometalinter was abandoned by upstream. Consider switching to golangci-lint instead"; # Added 2020-04-23
536424 googleAuthenticator = throw "'googleAuthenticator' has been renamed to/replaced by 'google-authenticator'"; # Converted to throw 2022-02-22
537425 googleearth = throw "the non-pro version of Google Earth was removed because it was discontinued and downloading it isn't possible anymore"; # Added 2022-01-22
538538- google-gflags = gflags; # Added 2019-07-25
539539- google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # Added 2021-03-07
540540- google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # Added 2021-03-07
426426+ google-gflags = throw "'google-gflags' has been renamed to/replaced by 'gflags'"; # Converted to throw 2022-09-24
541427 gosca = throw "gosca has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-30
542428 google-play-music-desktop-player = throw "GPMDP shows a black screen, upstream homepage is dead, use 'ytmdesktop' instead"; # Added 2022-06-16
543429 go-langserver = throw "go-langserver has been replaced by gopls"; # Added 2022-06-30
···546432 go-repo-root = throw "go-repo-root has been dropped due to the lack of maintanence from upstream since 2014"; # Added 2022-06-02
547433 gpgstats = throw "gpgstats has been removed: upstream is gone"; # Added 2022-02-06
548434 gpshell = throw "gpshell has been removed, because it was unmaintained in nixpkgs"; # added 2021-12-17
549549-550550- graalvm11 = graalvm11-ce;
435435+ graalvm11 = graalvm11-ce; # Added 2021-10-15
551436 graalvm8-ce = throw "graalvm8-ce has been removed by upstream"; # Added 2021-10-19
552437 graalvm8 = throw "graalvm8-ce has been removed by upstream"; # Added 2021-10-19
553438 graalvm8-ee = throw "graalvm8-ee has been removed because it is unmaintained"; # Added 2022-04-15
554439 graalvm11-ee = throw "graalvm11-ee has been removed because it is unmaintained"; # Added 2022-04-15
555440 gradio = throw "gradio has been removed because it is unmaintained, use shortwave instead"; # Added 2022-06-03
556441 grafana-mimir = throw "'grafana-mimir' has been renamed to/replaced by 'mimir'"; # Added 2022-06-07
557557- gr-ais = gnuradio3_7.pkgs.ais; # Added 2019-05-27, changed 2020-10-16
442442+ gr-ais = throw "'gr-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2022-09-24
558443 grantlee5 = throw "'grantlee5' has been renamed to/replaced by 'libsForQt5.grantlee'"; # Converted to throw 2022-02-22
559559- gr-gsm = gnuradio3_7.pkgs.gsm; # Added 2019-05-27, changed 2020-10-16
444444+ gr-gsm = throw "'gr-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2022-09-24
560445 grib-api = throw "grib-api has been replaced by ecCodes => https://confluence.ecmwf.int/display/ECC/GRIB-API+migration"; # Added 2022-01-05
561561- gr-limesdr = gnuradio3_7.pkgs.limesdr; # Added 2019-05-27, changed 2020-10-16
562562- gr-nacl = gnuradio3_7.pkgs.nacl; # Added 2019-05-27, changed 2020-10-16
563563- gr-osmosdr = gnuradio3_7.pkgs.osmosdr; # Added 2019-05-27, changed 2020-10-16
564564- gr-rds = gnuradio3_7.pkgs.rds; # Added 2019-05-27, changed 2020-10-16
446446+ gr-limesdr = throw "'gr-limesdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.limesdr'"; # Converted to throw 2022-09-24
447447+ gr-nacl = throw "'gr-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2022-09-24
448448+ gr-osmosdr = throw "'gr-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2022-09-24
449449+ gr-rds = throw "'gr-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2022-09-24
565450 grv = throw "grv has been dropped due to the lack of maintanence from upstream since 2019"; # Added 2022-06-01
566451 gsettings_desktop_schemas = throw "'gsettings_desktop_schemas' has been renamed to/replaced by 'gsettings-desktop-schemas'"; # Converted to throw 2022-02-22
567452 gtk_doc = throw "'gtk_doc' has been renamed to/replaced by 'gtk-doc'"; # Converted to throw 2022-02-22
568453 gtklick = throw "gtklick has been removed from nixpkgs as the project is stuck on python2"; # Added 2022-01-01
569569- gtmess = throw "gtmess has been removed, because it was a MSN client."; # add 2021-12-15
454454+ gtmess = throw "gtmess has been removed, because it was a MSN client."; # Added 2021-12-15
570455 guile-gnome = throw "guile-gnome has been removed"; # Added 2022-01-16
571456 guileCairo = throw "'guileCairo' has been renamed to/replaced by 'guile-cairo'"; # Converted to throw 2022-02-22
572457 guileGnome = throw "guile-gnome has been removed"; # Added 2022-01-16
···583468584469 ### H ###
585470586586- hal-flash = throw "hal-flash has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07
587471 hardlink = throw "hardlink was merged into util-linux since 2019-06-14."; # Added 2022-08-12
588472 inherit (harePackages) hare harec; # Added 2022-08-10
589473 hawkthorne = throw "hawkthorne has been removed because it depended on a broken version of love"; # Added 2022-01-15
590474 heapster = throw "Heapster is now retired. See https://github.com/kubernetes-retired/heapster/blob/master/docs/deprecation.md"; # Added 2022-04-05
591475 heimdalFull = throw "'heimdalFull' has been renamed to/replaced by 'heimdal'"; # Converted to throw 2022-02-22
592476 heme = throw "heme has been removed: upstream is gone"; # added 2022-02-06
593593- hepmc = hepmc2; # Added 2019-08-05
477477+ hepmc = throw "'hepmc' has been renamed to/replaced by 'hepmc2'"; # Converted to throw 2022-09-24
594478 hicolor_icon_theme = throw "'hicolor_icon_theme' has been renamed to/replaced by 'hicolor-icon-theme'"; # Converted to throw 2022-02-22
595479 holdingnuts = throw "holdingnuts was removed from nixpkgs, as the project is no longer developed"; # Added 2022-05-10
596480 holochain-go = throw "holochain-go was abandoned by upstream"; # Added 2022-01-01
597481 htmlTidy = throw "'htmlTidy' has been renamed to/replaced by 'html-tidy'"; # Converted to throw 2022-02-22
598598- ht-rust = xh; # Added 2021-02-13
599599- hydra-flakes = throw "hydra-flakes: Flakes support has been merged into Hydra's master. Please use `hydra_unstable` now"; # Added 2020-04-06
482482+ ht-rust = throw "'ht-rust' has been renamed to/replaced by 'xh'"; # Converted to throw 2022-09-24
600483 hydra-unstable = hydra_unstable; # added 2022-05-10
601484 hyperspace-cli = throw "hyperspace-cli is out of date, and has been deprecated upstream in favour of using the individual repos instead"; # Added 2022-08-29
602485···604487605488 i3cat = throw "i3cat has been dropped due to the lack of maintanence from upstream since 2016"; # Added 2022-06-02
606489 iana_etc = throw "'iana_etc' has been renamed to/replaced by 'iana-etc'"; # Converted to throw 2022-02-22
607607- iasl = throw "iasl has been removed, use acpica-tools instead"; # Added 2021-08-08
608490 ical2org = throw "ical2org has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-02
609491 icecat-bin = throw "icecat-bin has been removed, the binary builds are not maintained upstream"; # Added 2022-02-15
610610- icedtea8_web = adoptopenjdk-icedtea-web; # Added 2019-08-21
611611- icedtea_web = adoptopenjdk-icedtea-web; # Added 2019-08-21
492492+ icedtea8_web = throw "'icedtea8_web' has been renamed to/replaced by 'adoptopenjdk-icedtea-web'"; # Converted to throw 2022-09-24
493493+ icedtea_web = throw "'icedtea_web' has been renamed to/replaced by 'adoptopenjdk-icedtea-web'"; # Converted to throw 2022-09-24
612494 icu59 = throw "icu59 has been removed, use a more recent version instead"; # Added 2022-05-14
613495 icu65 = throw "icu65 has been removed, use a more recent version instead"; # Added 2022-05-14
614496 idea = throw "'idea' has been renamed to/replaced by 'jetbrains'"; # Converted to throw 2022-02-22
615497 imapproxy = throw "imapproxy has been removed because it did not support a supported openssl version"; # added 2021-12-15
616616- imagemagick7Big = imagemagickBig; # Added 2021-02-22
617617- imagemagick7 = imagemagick; # Added 2021-02-22
618618- imagemagick7_light = imagemagick_light; # Added 2021-02-22
498498+ imagemagick7Big = throw "'imagemagick7Big' has been renamed to/replaced by 'imagemagickBig'"; # Converted to throw 2022-09-24
499499+ imagemagick7 = throw "'imagemagick7' has been renamed to/replaced by 'imagemagick'"; # Converted to throw 2022-09-24
500500+ imagemagick7_light = throw "'imagemagick7_light' has been renamed to/replaced by 'imagemagick_light'"; # Converted to throw 2022-09-24
619501 impressive = throw "impressive has been removed due to lack of released python 2 support and maintainership in nixpkgs"; # Added 2022-01-27
620620- i-score = throw "i-score has been removed: abandoned upstream"; # Added 2020-11-21
621502 inboxer = throw "inboxer has been removed as it is no longer maintained and no longer works as Google shut down the inbox service this package wrapped";
622503 index-fm = libsForQt5.mauiPackages.index; # added 2022-05-17
623623- infiniband-diags = rdma-core; # Added 2019-08-09
504504+ infiniband-diags = throw "'infiniband-diags' has been renamed to/replaced by 'rdma-core'"; # Converted to throw 2022-09-24
624505 ino = throw "ino has been removed from nixpkgs, the project is stuck on python2 and upstream has archived the project"; # Added 2022-01-12
625625- inotifyTools = inotify-tools;
506506+ inotifyTools = throw "'inotifyTools' has been renamed to/replaced by 'inotify-tools'"; # Converted to throw 2022-09-24
626507 intecture-agent = throw "intecture-agent has been removed, because it was no longer maintained upstream"; # added 2021-12-15
627508 intecture-auth = throw "intecture-auth has been removed, because it was no longer maintained upstream"; # added 2021-12-15
628509 intecture-cli = throw "intecture-cli has been removed, because it was no longer maintained upstream"; # added 2021-12-15
629510 interfacer = throw "interfacer is deprecated and archived by upstream"; # Added 2022-04-05
630630- inter-ui = inter; # Added 2021-03-27
511511+ inter-ui = throw "'inter-ui' has been renamed to/replaced by 'inter'"; # Converted to throw 2022-09-24
631512 iops = throw "iops was removed: upstream is gone"; # Added 2022-02-06
632632- iproute = iproute2; # moved from top-level 2021-03-14
513513+ iproute = throw "'iproute' has been renamed to/replaced by 'iproute2'"; # Converted to throw 2022-09-24
633514 ipsecTools = throw "ipsecTools has benn removed, because it was no longer maintained upstream"; # Added 2021-12-15
634515 itch-setup = throw "itch-setup has benn removed, use itch instead"; # Added 2022-06-02
635516636517 ### J ###
637518638519639639- jack2Full = jack2; # moved from top-level 2021-03-14
520520+ jack2Full = throw "'jack2Full' has been renamed to/replaced by 'jack2'"; # Converted to throw 2022-09-24
640521 jami-client-gnome = throw "jami-client-gnome has been removed: abandoned upstream"; # Added 2022-05-15
641522 jami-libclient = throw "jami-libclient has been removed: moved into jami-qt"; # Added 2022-07-29
642642- jamomacore = throw "jamomacore has been removed: abandoned upstream"; # Added 2020-11-21
643643- jbidwatcher = throw "jbidwatcher was discontinued in march 2021"; # Added 2021-03-15
644523 jbuilder = throw "'jbuilder' has been renamed to/replaced by 'dune_1'"; # Converted to throw 2022-02-22
645524 jd = throw "jd has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-03
646646- jellyfin_10_5 = throw "Jellyfin 10.5 is no longer supported and contains a security vulnerability. Please upgrade to a newer version"; # Added 2021-04-26
647525 joseki = throw "'joseki' has been renamed to/replaced by 'apache-jena-fuseki'"; # Converted to throw 2022-02-22
648526 journalbeat7 = throw "journalbeat has been removed upstream. Use filebeat with the journald input instead";
649527650528 # Julia
651651- julia_07 = throw "julia_07 has been deprecated in favor of the latest LTS version"; # Added 2020-09-15
652652- julia_1 = throw "julia_1 has been deprecated in favor of julia_10 as it was ambiguous"; # Added 2021-03-13
653653- julia_11 = throw "julia_11 has been deprecated in favor of the latest stable version"; # Added 2020-09-15
654654- julia_13 = throw "julia_13 has been deprecated in favor of the latest stable version"; # Added 2021-03-13
655529 julia_10-bin = throw "julia_10-bin has been deprecated in favor of the latest LTS version"; # Added 2021-12-02
656530 julia_17-bin = throw "julia_17-bin has been deprecated in favor of the latest stable version"; # Added 2022-09-04
657531···661535 ### K ###
662536663537 k3d = throw "k3d has been removed because it was broken and has seen no release since 2016"; # Added 2022-01-04
664664- k9copy = throw "k9copy has been removed from nixpkgs, as there is no upstream activity"; # Added 2020-11-06
665538 kafkacat = kcat; # Added 2021-10-07
666666- kbdKeymaps = throw "kbdKeymaps is not needed anymore since dvp and neo are now part of kbd"; # Added 2021-04-11
667667- kdeconnect = plasma5Packages.kdeconnect-kde; # Added 2020-10-28
668668- kdecoration-viewer = throw "kdecoration-viewer has been removed from nixpkgs, as there is no upstream activity"; # Added 2020-06-16
539539+ kdeconnect = throw "'kdeconnect' has been renamed to/replaced by 'plasma5Packages.kdeconnect-kde'"; # Converted to throw 2022-09-24
669540 kdiff3-qt5 = throw "'kdiff3-qt5' has been renamed to/replaced by 'kdiff3'"; # Converted to throw 2022-02-22
670541 keepass-keefox = throw "'keepass-keefox' has been renamed to/replaced by 'keepass-keepassrpc'"; # Converted to throw 2022-02-22
671542 keepassx-community = throw "'keepassx-community' has been renamed to/replaced by 'keepassxc'"; # Converted to throw 2022-02-22
672543 keepassx-reboot = throw "'keepassx-reboot' has been renamed to/replaced by 'keepassx-community'"; # Converted to throw 2022-02-22
673544 keepassx2-http = throw "'keepassx2-http' has been renamed to/replaced by 'keepassx-reboot'"; # Converted to throw 2022-02-22
674545 keepnote = throw "keepnote has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-01
675675- kerberos = libkrb5; # moved from top-level 2021-03-14
546546+ kerberos = throw "'kerberos' has been renamed to/replaced by 'libkrb5'"; # Converted to throw 2022-09-24
676547 kexectools = kexec-tools; # Added 2021-09-03
677677- kexpand = "kexpand awless has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-01
548548+ kexpand = throw "kexpand awless has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-01
678549 keybase-go = throw "'keybase-go' has been renamed to/replaced by 'keybase'"; # Converted to throw 2022-02-22
679679- keysmith = libsForQt5.plasmaMobileGear.keysmith; # Added 2021-07-14
550550+ keysmith = throw "'keysmith' has been renamed to/replaced by 'libsForQt5.plasmaMobileGear.keysmith'"; # Converted to throw 2022-09-24
680551 kgx = gnome-console; # Added 2022-02-19
681681- kibana7-oss = throw "kibana7-oss has been removed, as the distribution is no longer provided by upstream. https://github.com/NixOS/nixpkgs/pull/114456"; # Added 2021-06-09
682682- kicad-with-packages3d = kicad; # Added 2019-11-25
683683- kindlegen = throw "kindlegen has been removed from nixpkgs, as it's abandoned and no longer available for download"; # Added 2021-03-09
684684- kinetic-cpp-client = throw "kinetic-cpp-client has been removed from nixpkgs, as it's abandoned"; # Added 2020-04-28
685685- kino = throw "kino has been removed because it was broken and abandoned"; # Added 2021-04-25
552552+ kicad-with-packages3d = throw "'kicad-with-packages3d' has been renamed to/replaced by 'kicad'"; # Converted to throw 2022-09-24
686553 knockknock = throw "knockknock has been removed from nixpkgs because the upstream project is abandoned"; # Added 2022-01-01
687554 kodestudio = throw "kodestudio has been removed from nixpkgs, as the nix package has been long unmaintained and out of date."; # Added 2022-06-07
688688- kodiGBM = kodi-gbm;
689689- kodiPlain = kodi;
690690- kodiPlainWayland = kodi-wayland;
555555+ kodiGBM = throw "'kodiGBM' has been renamed to/replaced by 'kodi-gbm'"; # Converted to throw 2022-09-24
556556+ kodiPlain = throw "'kodiPlain' has been renamed to/replaced by 'kodi'"; # Converted to throw 2022-09-24
557557+ kodiPlainWayland = throw "'kodiPlainWayland' has been renamed to/replaced by 'kodi-wayland'"; # Converted to throw 2022-09-24
691558 kodiPlugins = kodiPackages; # Added 2021-03-09;
692692- kramdown-rfc2629 = rubyPackages.kramdown-rfc2629; # Added 2021-03-23
559559+ kramdown-rfc2629 = throw "'kramdown-rfc2629' has been renamed to/replaced by 'rubyPackages.kramdown-rfc2629'"; # Converted to throw 2022-09-24
693560 krename-qt5 = throw "'krename-qt5' has been renamed to/replaced by 'krename'"; # Converted to throw 2022-02-22
694561 krita-beta = krita; # moved from top-level 2021-12-23
695562 kube-aws = throw "kube-aws is deprecated and archived by upstream"; # Added 2022-04-05
···700567 ### L ###
701568702569 lastfmsubmitd = throw "lastfmsubmitd was removed from nixpkgs as the project is abandoned"; # Added 2022-01-01
703703- latinmodern-math = lmmath;
570570+ latinmodern-math = throw "'latinmodern-math' has been renamed to/replaced by 'lmmath'"; # Converted to throw 2022-09-24
704571 letsencrypt = throw "'letsencrypt' has been renamed to/replaced by 'certbot'"; # Converted to throw 2022-02-22
705572 libGL_driver = throw "'libGL_driver' has been renamed to/replaced by 'mesa.drivers'"; # Converted to throw 2022-02-22
706573 libaudit = throw "'libaudit' has been renamed to/replaced by 'audit'"; # Converted to throw 2022-02-22
···709576 libcanberra_gtk2 = throw "'libcanberra_gtk2' has been renamed to/replaced by 'libcanberra-gtk2'"; # Converted to throw 2022-02-22
710577 libcanberra_gtk3 = throw "'libcanberra_gtk3' has been renamed to/replaced by 'libcanberra-gtk3'"; # Converted to throw 2022-02-22
711578 libcap_manpages = throw "'libcap_manpages' has been renamed to/replaced by 'libcap.doc'"; # Converted to throw 2022-02-22
712712- libcap_pam = if stdenv.isLinux then libcap.pam else null; # Added 2016-04-29
579579+ libcap_pam = throw "'libcap_pam has been renamed to/replaced by 'libcap.pam'"; # Converted to throw 2022-09-24
713580 libcap_progs = throw "'libcap_progs' has been renamed to/replaced by 'libcap.out'"; # Converted to throw 2022-02-22
714714- libco-canonical = throw "libco-canonical: Canonical deleted the repo, libco-canonical is not used anymore"; # Added 2021-05-16
715715- libcroco = throw "libcroco has been removed as it's no longer used in any derivations"; # Added 2020-03-04
716581 libdbusmenu-glib = throw "'libdbusmenu-glib' has been renamed to/replaced by 'libdbusmenu'"; # Converted to throw 2022-02-22
717582 libdbusmenu_qt = throw "'libdbusmenu_qt' (Qt4) is deprecated and unused, use 'libsForQt5.libdbusmenu'"; # Added 2022-06-14
718583 libdbusmenu_qt5 = throw "'libdbusmenu_qt5' has been renamed to/replaced by 'libsForQt5.libdbusmenu'"; # Converted to throw 2022-02-22
···727592 libgpgerror = libgpg-error; # Added 2021-09-04
728593 libgroove = throw "libgroove has been removed, because it depends on an outdated and insecure version of ffmpeg"; # Added 2022-01-21
729594 libgumbo = throw "'libgumbo' has been renamed to/replaced by 'gumbo'"; # Converted to throw 2022-02-22
730730- libintlOrEmpty = lib.optional (!stdenv.isLinux || stdenv.hostPlatform.libc != "glibc") gettext; # Added 2018-03-14
731731- libixp_hg = libixp;
732732- libjpeg_drop = libjpeg_original; # Added 2020-06-05
595595+ libintlOrEmpty = "'libintlOrEmpty' has been renamed to/replace by 'gettext'"; # Converted to throw 2022-09-24
596596+ libixp_hg = libixp; # Added 2022-04-25
597597+ libjpeg_drop = throw "'libjpeg_drop' has been renamed to/replaced by 'libjpeg_original'"; # Converted to throw 2022-09-24
733598 libjson_rpc_cpp = throw "'libjson_rpc_cpp' has been renamed to/replaced by 'libjson-rpc-cpp'"; # Converted to throw 2022-02-22
734599 libkml = throw "libkml has been removed from nixpkgs, as it's abandoned and no package needed it"; # Added 2021-11-09
735600 liblapackWithoutAtlas = throw "'liblapackWithoutAtlas' has been renamed to/replaced by 'lapack-reference'"; # Converted to throw 2022-02-22
736736- liblastfm = libsForQt5.liblastfm; # Added 2020-06-14
601601+ liblastfm = throw "'liblastfm' has been renamed to/replaced by 'libsForQt5.liblastfm'"; # Converted to throw 2022-09-24
737602 liblrdf = throw "'liblrdf' has been renamed to/replaced by 'lrdf'"; # Converted to throw 2022-02-22
738603 libmsgpack = throw "'libmsgpack' has been renamed to/replaced by 'msgpack'"; # Converted to throw 2022-02-22
739604 libnih = throw "'libnih' has been removed"; # Converted to throw 2022-05-17
740605 libosmpbf = throw "libosmpbf was removed because it is no longer required by osrm-backend";
741741- libpng_apng = throw "libpng_apng has been removed, because it is equivalent to libpng"; # Added 2021-03-21
742606 libpulseaudio-vanilla = libpulseaudio; # Added 2022-04-20
743743- libqmatrixclient = throw "libqmatrixclient was renamed to libquotient"; # Added 2020-04-09
744607 libqrencode = throw "'libqrencode' has been renamed to/replaced by 'qrencode'"; # Converted to throw 2022-02-22
745745- librdf = lrdf; # Added 2020-03-22
608608+ librdf = throw "'librdf' has been renamed to/replaced by 'lrdf'"; # Converted to throw 2022-09-24
746609 librecad2 = throw "'librecad2' has been renamed to/replaced by 'librecad'"; # Converted to throw 2022-02-22
747610 libressl_3_2 = throw "'libressl_3_2' has reached end-of-life "; # Added 2022-03-19
748611 librevisa = throw "librevisa has been removed because its website and source have disappeared upstream"; # Added 2022-09-23
749749- librsync_0_9 = throw "librsync_0_9 has been removed"; # Added 2021-07-24
750750- libseat = seatd; # Added 2021-06-24
612612+ libseat = throw "'libseat' has been renamed to/replaced by 'seatd'"; # Converted to throw 2022-09-24
751613 libspotify = throw "libspotify has been removed because Spotify stopped supporting it"; # added 2022-05-29
752752- libstdcxxHook = throw "libstdcxx hook has been removed because cc-wrapper is now directly aware of the c++ standard library intended to be used"; # Added 2020-06-22
753614 libsysfs = throw "'libsysfs' has been renamed to/replaced by 'sysfsutils'"; # Converted to throw 2022-02-22
615615+ libtensorflow-bin = libtensorflow; # Added 2022-09-25
754616 libtidy = throw "'libtidy' has been renamed to/replaced by 'html-tidy'"; # Converted to throw 2022-02-22
755755- libtorrentRasterbar = libtorrent-rasterbar; # Added 2020-12-20
756756- libtorrentRasterbar-1_1_x = libtorrent-rasterbar-1_1_x; # Added 2020-12-20
757757- libtorrentRasterbar-1_2_x = libtorrent-rasterbar-1_2_x; # Added 2020-12-20
758758- libtorrentRasterbar-2_0_x = libtorrent-rasterbar-2_0_x; # Added 2020-12-20
759759- libtxc_dxtn = throw "libtxc_dxtn was removed 2020-03-16, now integrated in Mesa";
760760- libtxc_dxtn_s2tc = throw "libtxc_dxtn_s2tc was removed 2020-03-16, now integrated in Mesa";
617617+ libtorrentRasterbar = throw "'libtorrentRasterbar' has been renamed to/replaced by 'libtorrent-rasterbar'"; # Converted to throw 2022-09-24
618618+ libtorrentRasterbar-1_1_x = throw "'libtorrentRasterbar-1_1_x' has been renamed to/replaced by 'libtorrent-rasterbar-1_1_x'"; # Converted to throw 2022-09-24
619619+ libtorrentRasterbar-1_2_x = throw "'libtorrentRasterbar-1_2_x' has been renamed to/replaced by 'libtorrent-rasterbar-1_2_x'"; # Converted to throw 2022-09-24
620620+ libtorrentRasterbar-2_0_x = throw "'libtorrentRasterbar-2_0_x' has been renamed to/replaced by 'libtorrent-rasterbar-2_0_x'"; # Converted to throw 2022-09-24
761621 libudev = throw "'libudev' has been renamed to/replaced by 'udev'"; # Converted to throw 2022-02-22
762762- libungif = giflib; # Added 2020-02-12
763763- libusb = libusb1; # Added 2020-04-28
622622+ libungif = throw "'libungif' has been renamed to/replaced by 'giflib'"; # Converted to throw 2022-09-24
623623+ libusb = throw "'libusb' has been renamed to/replaced by 'libusb1'"; # Converted to throw 2022-09-24
764624 libusb1-axoloti = throw "libusb1-axoloti has been removed: axoloti has been removed"; # Added 2022-05-13
765625 libva-full = throw "'libva-full' has been renamed to/replaced by 'libva'"; # Converted to throw 2022-02-22
766626 libva1-full = throw "'libva1-full' has been renamed to/replaced by 'libva1'"; # Converted to throw 2022-02-22
767767- libwnck3 = libwnck;
627627+ libwnck3 = throw "'libwnck3' has been renamed to/replaced by 'libwnck'"; # Converted to throw 2022-09-24
768628 lightdm_gtk_greeter = lightdm-gtk-greeter; # Added 2022-08-01
769629 lighthouse = throw "lighthouse has been removed: abandoned by upstream"; # Added 2022-04-24
770630 lighttable = throw "'lighttable' crashes (SIGSEGV) on startup, has not been updated in years and depends on deprecated GTK2"; # Added 2022-06-15
···815675 linux_rpi3 = linuxKernel.kernels.linux_rpi3;
816676 linux_rpi4 = linuxKernel.kernels.linux_rpi4;
817677818818- # Added 2020-04-04
819819- linuxPackages_testing_hardened = throw "linuxPackages_testing_hardened has been removed, please use linuxPackages_latest_hardened";
820820- linux_testing_hardened = throw "linux_testing_hardened has been removed, please use linux_latest_hardened";
678678+ linuxPackages_xen_dom0 = throw "'linuxPackages_xen_dom0' has been renamed to/replaced by 'linuxPackages'"; # Converted to throw 2022-09-24
679679+ linuxPackages_latest_xen_dom0 = throw "'linuxPackages_latest_xen_dom0' has been renamed to/replaced by 'linuxPackages_latest'"; # Converted to throw 2022-09-24
680680+ linuxPackages_xen_dom0_hardened = throw "'linuxPackages_xen_dom0_hardened' has been renamed to/replaced by 'linuxPackages_hardened'"; # Converted to throw 2022-09-24
681681+ linuxPackages_latest_xen_dom0_hardened = throw "'linuxPackages_latest_xen_dom0_hardened' has been renamed to/replaced by 'linuxPackages_latest_hardened'"; # Converted to throw 2022-09-24
821682822822- # Added 2021-04-04
823823- linuxPackages_xen_dom0 = linuxPackages;
824824- linuxPackages_latest_xen_dom0 = linuxPackages_latest;
825825- linuxPackages_xen_dom0_hardened = linuxPackages_hardened;
826826- linuxPackages_latest_xen_dom0_hardened = linuxPackages_latest_hardened;
827827-828828- # Added 2021-08-16
829829- linuxPackages_latest_hardened = throw ''
830830- The attribute `linuxPackages_hardened_latest' was dropped because the hardened patches
831831- frequently lag behind the upstream kernel. In some cases this meant that this attribute
832832- had to refer to an older kernel[1] because the latest hardened kernel was EOL and
833833- the latest supported kernel didn't have patches.
834834-835835- If you want to use a hardened kernel, please check which kernel minors are supported
836836- and use a versioned attribute, e.g. `linuxPackages_5_10_hardened'.
837837-838838- [1] for more context: https://github.com/NixOS/nixpkgs/pull/133587
839839- '';
840840- linux_latest_hardened = linuxPackages_latest_hardened;
841841-842842- linux-steam-integration = throw "linux-steam-integration has been removed, as the upstream project has been abandoned"; # Added 2020-05-22
843843-844844- loadcaffe = throw "loadcaffe has been removed, as the upstream project has been abandoned"; # Added 2020-03-28
845845- lobster-two = google-fonts; # Added 2021-07-22
683683+ lobster-two = throw "'lobster-two' has been renamed to/replaced by 'google-fonts'"; # Converted to throw 2022-09-24
846684 love_0_7 = throw "love_0_7 was removed because it is a very old version and no longer used by any package in nixpkgs"; # Added 2022-01-15
847685 love_0_8 = throw "love_0_8 was removed because it is a very old version and no longer used by any package in nixpkgs"; # Added 2022-01-15
848686 love_0_9 = throw "love_0_9 was removed because was broken for a long time and no longer used by any package in nixpkgs"; # Added 2022-01-15
849849- lprof = throw "lprof has been removed as it's unmaintained upstream and broken in nixpkgs since a while ago"; # Added 2021-02-15
850687 lttngTools = throw "'lttngTools' has been renamed to/replaced by 'lttng-tools'"; # Converted to throw 2022-02-22
851688 lttngUst = throw "'lttngUst' has been renamed to/replaced by 'lttng-ust'"; # Converted to throw 2022-02-22
852689 lua5_1_sockets = throw "'lua5_1_sockets' has been renamed to/replaced by 'lua51Packages.luasocket'"; # Converted to throw 2022-02-22
···854691 lua5_sec = throw "'lua5_sec' has been renamed to/replaced by 'luaPackages.luasec'"; # Converted to throw 2022-02-22
855692 lumo = throw "lumo has been removed: abandoned by upstream"; # Added 2022-04-25
856693 lumpy = throw "lumpy has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-12
857857- lxappearance-gtk3 = throw "lxappearance-gtk3 has been removed. Use lxappearance instead, which now defaults to Gtk3"; # Added 2020-06-03
858858- lzma = xz; # moved from top-level 2021-03-14
694694+ lzma = throw "'lzma' has been renamed to/replaced by 'xz'"; # Converted to throw 2022-09-24
859695860696 ### M ###
861697862698 m3d-linux = throw "'m3d-linux' has been renamed to/replaced by 'm33-linux'"; # Converted to throw 2022-02-22
863863- mail-notification = throw "mail-notification has been removed from nixpkgs, as it's unmaintained and has dependencies on old gnome libraries we want to remove"; # Added 2021-08-21
864699 mailpile = throw "mailpile was removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-12
865700 man_db = throw "'man_db' has been renamed to/replaced by 'man-db'"; # Converted to throw 2022-02-22
866701 manul = throw "manul has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-01
867702 manpages = throw "'manpages' has been renamed to/replaced by 'man-pages'"; # Converted to throw 2022-02-22
868868- marathon = throw "marathon has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15
869703 mariadb-client = hiPrio mariadb.client; #added 2019.07.28
870704 marp = throw "marp has been removed from nixpkgs, as it's unmaintained and has security issues"; # Added 2022-06-04
871871- matcha = throw "matcha was renamed to matcha-gtk-theme"; # added 2020-05-09
872872- mathics = throw "mathics has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15
873873- matrique = spectral; # Added 2020-01-27
705705+ matrique = throw "'matrique' has been renamed to/replaced by 'spectral'"; # Converted to throw 2022-09-24
874706 maui-nota = libsForQt5.mauiPackages.nota; # added 2022-05-17
875875- mcgrid = throw "mcgrid has been removed from nixpkgs, as it's not compatible with rivet 3"; # Added 2020-05-23
876707 mcomix3 = mcomix; # Added 2022-06-05
877708 mediatomb = throw "mediatomb is no longer maintained upstream, use gerbera instead"; # added 2022-01-04
878878- meme = meme-image-generator; # Added 2021-04-21
709709+ meme = throw "'meme' has been renamed to/replaced by 'meme-image-generator'"; # Converted to throw 2022-09-24
879710 memtest86 = throw "'memtest86' has been renamed to/replaced by 'memtest86plus'"; # Converted to throw 2022-02-22
880711 mercurial_4 = throw "mercurial_4 has been removed as it's unmaintained"; # Added 2021-10-18
881881- mesos = throw "mesos has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15
882882- mess = mame; # Added 2019-10-30
883883- metal = throw "metal has been removed due to lack of maintainers";
712712+ mess = throw "'mess' has been renamed to/replaced by 'mame'"; # Converted to throw 2022-09-24
713713+ metal = throw "metal has been removed due to lack of maintainers"; # Added 2022-06-30
884714 mididings = throw "mididings has been removed from nixpkgs as it doesn't support recent python3 versions and its upstream stopped maintaining it"; # Added 2022-01-12
885715 midoriWrapper = throw "'midoriWrapper' has been renamed to/replaced by 'midori'"; # Converted to throw 2022-02-22
886716 mime-types = mailcap; # Added 2022-01-21
887717 mimms = throw "mimms has been removed from nixpkgs as the upstream project is stuck on python2"; # Added 2022-01-01
888888- minergate-cli = throw "minergatecli has been removed from nixpkgs, because the package is unmaintained and the site has a bad reputation"; # Added 2021-08-13
889889- minergate = throw "minergate has been removed from nixpkgs, because the package is unmaintained and the site has a bad reputation"; # Added 2021-08-13
890718 minetestclient_4 = throw "minetestclient_4 has been removed from Nixpkgs; current version is available at minetest or minetestclient"; # added 2022-02-01
891719 minetestserver_4 = throw "minetestserver_4 has been removed from Nixpkgs; current version is available at minetestserver"; # added 2022-02-01
892720 minetime = throw "minetime has been removed from nixpkgs, because it was discontinued 2021-06-22"; # Added 2021-10-14
893893- mist = throw "mist has been removed as the upstream project has been abandoned, see https://github.com/ethereum/mist#mist-browser-deprecated"; # Added 2020-08-15
894721 mlt-qt5 = throw "'mlt-qt5' has been renamed to/replaced by 'libsForQt5.mlt'"; # Converted to throw 2022-02-22
895722 mobile_broadband_provider_info = throw "'mobile_broadband_provider_info' has been renamed to/replaced by 'mobile-broadband-provider-info'"; # Converted to throw 2022-02-22
896896- moby = throw "moby has been removed, merged into linuxkit in 2018. Use linuxkit instead";
897723 module_init_tools = throw "'module_init_tools' has been renamed to/replaced by 'kmod'"; # Converted to throw 2022-02-22
898724 monero = monero-cli; # Added 2021-11-28
899725 monodevelop = throw "monodevelop has been removed from nixpgks"; # Added 2022-01-15
900900- mopidy-gmusic = throw "mopidy-gmusic has been removed because Google Play Music was discontinued"; # Added 2021-03-07
901901- mopidy-local-images = throw "mopidy-local-images has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension"; # Added 2020-10-18
902902- mopidy-local-sqlite = throw "mopidy-local-sqlite has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension"; # Added 2020-10-18
903726 mopidy-spotify = throw "mopidy-spotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29
904727 mopidy-spotify-tunigo = throw "mopidy-spotify-tunigo has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29
905728906729 morituri = throw "'morituri' has been renamed to/replaced by 'whipper'"; # Converted to throw 2022-02-22
907730 moz-phab = mozphab; # Added 2022-08-09
908908- mozart-binary = mozart2-binary; # Added 2019-09-23
909909- mozart = mozart2-binary; # Added 2019-09-23
731731+ mozart-binary = throw "'mozart-binary' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2022-09-24
732732+ mozart = throw "'mozart' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2022-09-24
910733 mpc_cli = mpc-cli; # moved from top-level 2022-01-24
911911- mpd_clientlib = libmpdclient; # Added 2021-02-11
734734+ mpd_clientlib = throw "'mpd_clientlib' has been renamed to/replaced by 'libmpdclient'"; # Converted to throw 2022-09-24
912735 mpich2 = throw "'mpich2' has been renamed to/replaced by 'mpich'"; # Converted to throw 2022-02-22
913736 mqtt-bench = throw "mqtt-bench has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02
914737 msf = throw "'msf' has been renamed to/replaced by 'metasploit'"; # Converted to throw 2022-02-22
915738 multimc = throw "multimc was removed from nixpkgs; use polymc instead (see https://github.com/NixOS/nixpkgs/pull/154051 for more information)"; # Added 2022-01-08
916916- mumble_git = pkgs.mumble; # Added 2019-08-01
917917- murmur_git = pkgs.murmur; # Added 2019-08-01
739739+ mumble_git = throw "'mumble_git' has been renamed to/replaced by 'pkgs.mumble'"; # Converted to throw 2022-09-24
740740+ murmur_git = throw "'murmur_git' has been renamed to/replaced by 'pkgs.murmur'"; # Converted to throw 2022-09-24
918741 mutt-with-sidebar = mutt; # Added 2022-09-17
919919- mysql-client = hiPrio mariadb.client;
920920- mysql = mariadb; # moved from top-level 2021-03-14
742742+ mysql-client = throw "'mysql-client' has been renamed to/replaced by 'hiPrio'"; # Converted to throw 2022-09-24
743743+ mysql = throw "'mysql' has been renamed to/replaced by 'mariadb'"; # Converted to throw 2022-09-24
921744922922- # floating point textures patents are expired,
923923- # so package reduced to alias
924924- mesa_drivers = mesa.drivers;
745745+ mesa_drivers = throw "'mesa_drivers' has been renamed to/replaced by 'mesa.drivers'"; # Converted to throw 2022-09-24
925746 mesa_noglu = throw "'mesa_noglu' has been renamed to/replaced by 'mesa'"; # Converted to throw 2022-02-22
926747927927- mpv-with-scripts = self.wrapMpv self.mpv-unwrapped { }; # Added 2020-05-22
748748+ mpv-with-scripts = throw "'mpv-with-scripts' has been renamed to/replaced by 'self.wrapMpv'"; # Converted to throw 2022-09-24
928749 mssys = throw "'mssys' has been renamed to/replaced by 'ms-sys'"; # Converted to throw 2022-02-22
929750 multipath_tools = throw "'multipath_tools' has been renamed to/replaced by 'multipath-tools'"; # Converted to throw 2022-02-22
930751 mumsi = throw "mumsi has been removed from nixpkgs, as it's unmaintained and does not build anymore"; # Added 2021-11-18
931752 mupen64plus1_5 = throw "'mupen64plus1_5' has been renamed to/replaced by 'mupen64plus'"; # Converted to throw 2022-02-22
932753 mx = throw "graalvm8 and its tools were deprecated in favor of graalvm8-ce"; # Added 2021-10-15
933933- mxisd = throw "mxisd has been removed from nixpkgs as it has reached end of life, see https://github.com/kamax-matrix/mxisd/blob/535e0a5b96ab63cb0ddef90f6f42c5866407df95/EOL.md#end-of-life-notice . ma1sd may be a suitable alternative"; # Added 2021-04-15
934754 mysqlWorkbench = throw "'mysqlWorkbench' has been renamed to/replaced by 'mysql-workbench'"; # Converted to throw 2022-02-22
935755 myxer = throw "Myxer has been removed from nixpkgs, as it has been unmaintained since Jul 31, 2021"; # Added 2022-06-08
936756···941761 nccl_cudatoolkit_10 = throw "nccl_cudatoolkit_10 has been renamed to cudaPackages_10.nccl"; # Added 2022-04-04
942762 nccl_cudatoolkit_11 = throw "nccl_cudatoolkit_11 has been renamed to cudaPackages_11.nccl"; # Added 2022-04-04
943763944944- net_snmp = net-snmp; # Added 2019-12-21
945945- nagiosPluginsOfficial = monitoring-plugins;
946946- navit = throw "navit has been removed from nixpkgs, due to being unmaintained"; # Added 2021-06-07
764764+ net_snmp = throw "'net_snmp' has been renamed to/replaced by 'net-snmp'"; # Converted to throw 2022-09-24
765765+ nagiosPluginsOfficial = throw "'nagiosPluginsOfficial' has been renamed to/replaced by 'monitoring-plugins'"; # Converted to throw 2022-09-24
947766 ncat = throw "'ncat' has been renamed to/replaced by 'nmap'"; # Converted to throw 2022-02-22
948767 neap = throw "neap was removed from nixpkgs, as it relies on python2"; # Added 2022-01-12
949768 neochat = libsForQt5.plasmaMobileGear.neochat; # added 2022-05-10
950950- netease-cloud-music = throw "netease-cloud-music has been removed together with deepin"; # Added 2020-08-31
951769 networkmanager_fortisslvpn = throw "'networkmanager_fortisslvpn' has been renamed to/replaced by 'networkmanager-fortisslvpn'"; # Converted to throw 2022-02-22
952770 networkmanager_iodine = throw "'networkmanager_iodine' has been renamed to/replaced by 'networkmanager-iodine'"; # Converted to throw 2022-02-22
953771 networkmanager_l2tp = throw "'networkmanager_l2tp' has been renamed to/replaced by 'networkmanager-l2tp'"; # Converted to throw 2022-02-22
954772 networkmanager_openconnect = throw "'networkmanager_openconnect' has been renamed to/replaced by 'networkmanager-openconnect'"; # Converted to throw 2022-02-22
955773 networkmanager_openvpn = throw "'networkmanager_openvpn' has been renamed to/replaced by 'networkmanager-openvpn'"; # Converted to throw 2022-02-22
956774 networkmanager_vpnc = throw "'networkmanager_vpnc' has been renamed to/replaced by 'networkmanager-vpnc'"; # Converted to throw 2022-02-22
957957- neutral-style = throw "neural-style has been removed, as the upstream project has been abandoned"; # Added 2020-03-28
958775 nfsUtils = throw "'nfsUtils' has been renamed to/replaced by 'nfs-utils'"; # Converted to throw 2022-02-22
959776 nginxUnstable = throw "'nginxUnstable' has been renamed to/replaced by 'nginxMainline'"; # Converted to throw 2022-02-22
960777 nilfs_utils = throw "'nilfs_utils' has been renamed to/replaced by 'nilfs-utils'"; # Converted to throw 2022-02-22
961961- nix-direnv-flakes = nix-direnv;
962962- nix-review = nixpkgs-review; # Added 2019-12-22
963963- nixFlakes = nixVersions.stable; # Added 2021-05-21
778778+ nix-direnv-flakes = nix-direnv; # Added 2021-11-09
779779+ nix-review = throw "'nix-review' has been renamed to/replaced by 'nixpkgs-review'"; # Converted to throw 2022-09-24
780780+ nixFlakes = throw "'nixFlakes' has been renamed to/replaced by 'nixVersions.stable'"; # Converted to throw 2022-09-24
964781 nixStable = nixVersions.stable; # Added 2022-01-24
965782 nixUnstable = nixVersions.unstable; # Added 2022-01-26
966966- nix_2_3 = nixVersions.nix_2_3;
967967- nix_2_4 = nixVersions.nix_2_4;
968968- nix_2_5 = nixVersions.nix_2_5;
969969- nix_2_6 = nixVersions.nix_2_6;
783783+ nix_2_3 = nixVersions.nix_2_3; # Added 2022-01-26
784784+ nix_2_4 = nixVersions.nix_2_4; # Added 2022-01-26
785785+ nix_2_5 = nixVersions.nix_2_5; # Added 2022-01-26
786786+ nix_2_6 = nixVersions.nix_2_6; # Added 2022-01-26
970787 nixopsUnstable = nixops_unstable; # Added 2022-03-03
971788 nixosTest = testers.nixosTest; # Added 2022-05-05
972789 nixui = throw "nixui has been removed from nixpkgs, due to the project being unmaintained"; # Added 2022-05-23
973973- nmap-unfree = nmap; # Added 2021-04-06
790790+ nmap-unfree = throw "'nmap-unfree' has been renamed to/replaced by 'nmap'"; # Converted to throw 2022-09-24
974791 nmap-graphical = throw "nmap graphical support has been removed due to its python2 dependency"; # Added 2022-04-26
975792 nmap_graphical = throw "nmap graphical support has been removed due to its python2 dependency"; # Modified 2022-04-26
976793 nodejs-10_x = throw "nodejs-10_x has been removed. Use a newer version instead."; # Added 2022-05-31
977794 nodejs-12_x = throw "nodejs-12_x has been removed. Use a newer version instead."; # Added 2022-07-04
978795 nologin = throw "'nologin' has been renamed to/replaced by 'shadow'"; # Converted to throw 2022-02-22
979796 nomad_1_1 = throw "nomad_1_1 has been removed because it's outdated. Use a a newer version instead"; # Added 2022-05-22
980980- nordic-polar = throw "nordic-polar was removed on 2021-05-27, now integrated in nordic"; # Added 2021-05-27
981797 noto-fonts-cjk = noto-fonts-cjk-sans; # Added 2021-12-16
982798 nottetris2 = throw "nottetris2 was removed because it is unmaintained by upstream and broken"; # Added 2022-01-15
983983- now-cli = throw "now-cli has been replaced with nodePackages.vercel"; # Added 2021-08-05
984799 ntdb = throw "ntdb has been removed: abandoned by upstream"; # Added 2022-04-21
985800 nxproxy = throw "'nxproxy' has been renamed to/replaced by 'nx-libs'"; # Converted to throw 2022-02-22
986801···988803989804 oathToolkit = oath-toolkit; # Added 2022-04-04
990805 oci-image-tool = throw "oci-image-tool is no longer actively maintained, and has had major deficiencies for several years."; # Added 2022-05-14;
991991- oracleXE = throw "oracleXE has been removed, as it's heavily outdated and unmaintained"; # Added 2020-10-09
992806 OVMF-CSM = throw "OVMF-CSM has been removed in favor of OVMFFull"; # Added 2021-10-16
993807 OVMF-secureBoot = throw "OVMF-secureBoot has been removed in favor of OVMFFull"; # Added 2021-10-16
994994- oauth2_proxy = oauth2-proxy; # Added 2021-04-18
808808+ oauth2_proxy = throw "'oauth2_proxy' has been renamed to/replaced by 'oauth2-proxy'"; # Converted to throw 2022-09-24
995809 ocropus = throw "ocropus has been removed: abandoned by upstream"; # Added 2022-04-24
996996- octoprint-plugins = throw "octoprint-plugins are now part of the octoprint.python.pkgs package set"; # Added 2021-01-24
997997- ocz-ssd-guru = throw "ocz-ssd-guru has been removed due to there being no source available"; # Added 2021-07-12
998810 odpdown = throw "odpdown has been removed because it lacks python3 support"; # Added 2022-04-25
999999- ofp = throw "ofp is not compatible with odp-dpdk";
10001000- olifant = throw "olifant has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-05
1001811 openbazaar = throw "openbazzar has been removed from nixpkgs as upstream has abandoned the project"; # Added 2022-01-06
1002812 openbazaar-client = throw "openbazzar-client has been removed from nixpkgs as upstream has abandoned the project"; # Added 2022-01-06
1003813 opencascade_oce = throw "'opencascade_oce' has been renamed to/replaced by 'opencascade'"; # Converted to throw 2022-02-22
1004814 opencl-icd = throw "'opencl-icd' has been renamed to/replaced by 'ocl-icd'"; # Converted to throw 2022-02-22
1005815 openconnect_head = openconnect_unstable; # Added 2022-03-29
1006816 openconnect_gnutls = openconnect; # Added 2022-03-29
10071007- openconnect_pa = throw "openconnect_pa fork has been discontinued, support for GlobalProtect is now available in openconnect"; # Added 2021-05-21
10081008- openelec-dvb-firmware = libreelec-dvb-firmware; # Added 2021-05-10
817817+ openelec-dvb-firmware = throw "'openelec-dvb-firmware' has been renamed to/replaced by 'libreelec-dvb-firmware'"; # Converted to throw 2022-09-24
1009818 openexr_ctl = throw "'openexr_ctl' has been renamed to/replaced by 'ctl'"; # Converted to throw 2022-02-22
10101010- openisns = open-isns; # Added 2020-01-28
10111011- openjpeg_1 = throw "openjpeg_1 has been removed, use openjpeg_2 instead"; # Added 2021-01-24
10121012- openjpeg_2 = openjpeg; # Added 2021-01-25
819819+ openisns = throw "'openisns' has been renamed to/replaced by 'open-isns'"; # Converted to throw 2022-09-24
820820+ openjpeg_2 = throw "'openjpeg_2' has been renamed to/replaced by 'openjpeg'"; # Converted to throw 2022-09-24
1013821 openmpt123 = libopenmpt; # Added 2021-09-05
1014822 opensans-ttf = throw "'opensans-ttf' has been renamed to/replaced by 'open-sans'"; # Converted to throw 2022-02-22
1015823 openssh_with_kerberos = throw "'openssh_with_kerberos' has been renamed to/replaced by 'openssh'"; # Converted to throw 2022-02-22
1016824 openssl_3_0 = openssl_3; # Added 2022-06-27
10171017- orchis = orchis-theme; # Added 2021-06-09
10181018- osxfuse = macfuse-stubs; # Added 2021-03-20
10191019- otter-browser = throw "otter-browser has been removed from nixpkgs, as it was unmaintained"; # Added 2020-02-02
825825+ orchis = throw "'orchis' has been renamed to/replaced by 'orchis-theme'"; # Converted to throw 2022-09-24
826826+ osxfuse = throw "'osxfuse' has been renamed to/replaced by 'macfuse-stubs'"; # Converted to throw 2022-09-24
1020827 owncloudclient = throw "'owncloudclient' has been renamed to/replaced by 'owncloud-client'"; # Converted to throw 2022-02-22
10218281022829 ### P ###
···10258321026833 p11_kit = throw "'p11_kit' has been renamed to/replaced by 'p11-kit'"; # Converted to throw 2022-02-22
1027834 packet-cli = metal-cli; # Added 2021-10-25
10281028- paperless = paperless-ngx; # Added 2021-06-06
835835+ paperless = throw "'paperless' has been renamed to/replaced by 'paperless-ngx'"; # Converted to throw 2022-09-24
1029836 paperless-ng = paperless-ngx; # Added 2022-04-11
10301030- parity = openethereum; # Added 2020-08-01
837837+ parity = throw "'parity' has been renamed to/replaced by 'openethereum'"; # Converted to throw 2022-09-24
1031838 parity-ui = throw "parity-ui was removed because it was broken and unmaintained by upstream"; # Added 2022-01-10
1032839 parlatype = throw "parlatype has been removed: unmaintained"; # Added 2022-04-24
1033840 parquet-cpp = throw "'parquet-cpp' has been renamed to/replaced by 'arrow-cpp'"; # Converted to throw 2022-02-22
···1035842 pass-otp = throw "'pass-otp' has been renamed to/replaced by 'pass.withExtensions'"; # Converted to throw 2022-02-22
1036843 pbis-open = throw "pbis-open has been removed, because it is no longer maintained upstream"; # added 2021-12-15
1037844 pdf-redact-tools = throw "pdf-redact-tools has been removed from nixpkgs because the upstream has abandoned the project"; # Added 2022-01-01
10381038- pdf2htmlEx = throw "pdf2htmlEx has been removed from nixpkgs, as it was unmaintained"; # Added 2020-11-03
1039845 pdfmod = throw "pdfmod has been removed"; # Added 2022-01-15
10401040- pdfread = throw "pdfread has been remove because it is unmaintained for years and the sources are no longer available"; # Added 2021-07-22
1041846 peach = asouldocs; # Added 2022-08-28
1042847 pentablet-driver = xp-pen-g430-driver; # Added 2022-06-23
1043848 perlXMLParser = throw "'perlXMLParser' has been renamed to/replaced by 'perlPackages.XMLParser'"; # Converted to throw 2022-02-22
1044849 perlArchiveCpio = throw "'perlArchiveCpio' has been renamed to/replaced by 'perlPackages.ArchiveCpio'"; # Converted to throw 2022-02-22
10451045- pgadmin = pgadmin4;
850850+ pgadmin = pgadmin4; # Added 2022-01-14
1046851 pgadmin3 = throw "pgadmin3 was removed for being unmaintained, use pgadmin4 instead."; # Added 2022-03-30
1047852 pgp-tools = throw "'pgp-tools' has been renamed to/replaced by 'signing-party'"; # Converted to throw 2022-02-22
1048853 pg_tmp = throw "'pg_tmp' has been renamed to/replaced by 'ephemeralpg'"; # Converted to throw 2022-02-22
···1057862 php74Packages = php74; # Added 2022-05-24
1058863 php74Extensions = php74; # Added 2022-05-24
105986410601060- php73 = throw "php73 has been dropped due to the lack of maintanence from upstream for future releases"; # Added 2021-06-03
10611061- php73Packages = php73; # Added 2021-06-03
10621062- php73Extensions = php73; # Added 2021-06-03
865865+ php73Packages = throw "'php73Packages' has been renamed to/replaced by 'php73'"; # Converted to throw 2022-09-24
866866+ php73Extensions = throw "'php73Extensions' has been renamed to/replaced by 'php73'"; # Converted to throw 2022-09-24
106386710641064- php-embed = throw ''
10651065- php*-embed has been dropped, you can build something similar
10661066- with the following snippet:
10671067- php74.override { embedSupport = true; apxs2Support = false; }
10681068- ''; # Added 2020-04-01
10691069- php73-embed = php-embed; # Added 2020-04-01
10701070- php74-embed = php-embed; # Added 2020-04-01
868868+ php73-embed = throw "'php73-embed' has been renamed to/replaced by 'php-embed'"; # Converted to throw 2022-09-24
869869+ php74-embed = throw "'php74-embed' has been renamed to/replaced by 'php-embed'"; # Converted to throw 2022-09-24
107187010721072- phpPackages-embed = throw ''
10731073- php*Packages-embed has been dropped, you can build something
10741074- similar with the following snippet:
10751075- (php74.override { embedSupport = true; apxs2Support = false; }).packages
10761076- ''; # Added 2020-04-01
10771077- php73Packages-embed = phpPackages-embed;
10781078- php74Packages-embed = phpPackages-embed;
871871+ php73Packages-embed = throw "'php73Packages-embed' has been renamed to/replaced by 'phpPackages-embed'"; # Converted to throw 2022-09-24
872872+ php74Packages-embed = throw "'php74Packages-embed' has been renamed to/replaced by 'phpPackages-embed'"; # Converted to throw 2022-09-24
107987310801080- php-unit = throw ''
10811081- php*-unit has been dropped, you can build something similar with
10821082- the following snippet:
10831083- php74.override {
10841084- embedSupport = true;
10851085- apxs2Support = false;
10861086- systemdSupport = false;
10871087- phpdbgSupport = false;
10881088- cgiSupport = false;
10891089- fpmSupport = false;
10901090- }
10911091- ''; # Added 2020-04-01
10921092- php73-unit = php-unit; # Added 2020-04-01
10931093- php74-unit = php-unit; # Added 2020-04-01
874874+ php73-unit = throw "'php73-unit' has been renamed to/replaced by 'php-unit'"; # Converted to throw 2022-09-24
875875+ php74-unit = throw "'php74-unit' has been renamed to/replaced by 'php-unit'"; # Converted to throw 2022-09-24
109487610951095- phpPackages-unit = throw ''
10961096- php*Packages-unit has been dropped, you can build something
10971097- similar with this following snippet:
10981098- (php74.override {
10991099- embedSupport = true;
11001100- apxs2Support = false;
11011101- systemdSupport = false;
11021102- phpdbgSupport = false;
11031103- cgiSupport = false;
11041104- fpmSupport = false;
11051105- }).packages
11061106- ''; # Added 2020-04-01
11071107- php73Packages-unit = phpPackages-unit;
11081108- php74Packages-unit = phpPackages-unit;
877877+ php73Packages-unit = throw "'php73Packages-unit' has been renamed to/replaced by 'phpPackages-unit'"; # Converted to throw 2022-09-24
878878+ php74Packages-unit = throw "'php74Packages-unit' has been renamed to/replaced by 'phpPackages-unit'"; # Converted to throw 2022-09-24
11098791110880 pidgin-with-plugins = throw "'pidgin-with-plugins' has been renamed to/replaced by 'pidgin'"; # Converted to throw 2022-02-22
1111881 pidginlatex = throw "'pidginlatex' has been renamed to/replaced by 'pidgin-latex'"; # Converted to throw 2022-02-22
···1119889 ping = throw "'ping' does not build with recent valac and has been removed. If you are just looking for the 'ping' command use either 'iputils' or 'inetutils'"; # Added 2022-04-18
1120890 piwik = throw "'piwik' has been renamed to/replaced by 'matomo'"; # Converted to throw 2022-02-22
1121891 pixie = throw "pixie has been removed: abandoned by upstream"; # Added 2022-04-21
11221122- pkgconfig = pkg-config; # Added 2018-02-02, moved to aliases.nix 2021-01-18
892892+ pkgconfig = throw "'pkgconfig' has been renamed to/replaced by 'pkg-config'"; # Converted to throw 2022-09-24
1123893 pkgconfigUpstream = throw "'pkgconfigUpstream' has been renamed to/replaced by 'pkg-configUpstream'"; # Converted to throw 2022-02-22
11241124- planner = throw "planner has been removed from nixpkgs, as it is no longer developed and still uses python2/PyGTK"; # Added 2021-02-02
11251125- pleroma-otp = pleroma; # Added 2021-07-10
894894+ pleroma-otp = throw "'pleroma-otp' has been renamed to/replaced by 'pleroma'"; # Converted to throw 2022-09-24
1126895 plexpy = throw "'plexpy' has been renamed to/replaced by 'tautulli'"; # Converted to throw 2022-02-22
11271127- pltScheme = racket; # just to be sure
896896+ pltScheme = racket; # Added 20218-01-01
1128897 pmtools = throw "'pmtools' has been renamed to/replaced by 'acpica-tools'"; # Converted to throw 2022-02-22
1129898 pocketsphinx = throw "pocketsphinx has been removed: unmaintained"; # Added 2022-04-24
1130899 polarssl = throw "'polarssl' has been renamed to/replaced by 'mbedtls'"; # Converted to throw 2022-02-22
···1135904 portaudio2014 = throw "'portaudio2014' has been removed"; # Added 2022-05-10
11369051137906 # postgresql
11381138- postgresql96 = postgresql_9_6;
907907+ postgresql96 = throw "'postgresql96' has been renamed to/replaced by 'postgresql_9_6'"; # Converted to throw 2022-09-24
1139908 postgresql_9_6 = throw "postgresql_9_6 has been removed from nixpkgs, as this version is no longer supported by upstream"; # Added 2021-12-03
11409091141910 # postgresql plugins
11421142- cstore_fdw = postgresqlPackages.cstore_fdw;
11431143- pg_cron = postgresqlPackages.pg_cron;
11441144- pg_hll = postgresqlPackages.pg_hll;
11451145- pg_repack = postgresqlPackages.pg_repack;
11461146- pg_similarity = postgresqlPackages.pg_similarity;
11471147- pg_topn = postgresqlPackages.pg_topn;
11481148- pgjwt = postgresqlPackages.pgjwt;
11491149- pgroonga = postgresqlPackages.pgroonga;
11501150- pgtap = postgresqlPackages.pgtap;
11511151- plv8 = postgresqlPackages.plv8;
11521152- postgis = postgresqlPackages.postgis;
911911+ cstore_fdw = throw "'cstore_fdw' has been renamed to/replaced by 'postgresqlPackages.cstore_fdw'"; # Converted to throw 2022-09-24
912912+ pg_cron = throw "'pg_cron' has been renamed to/replaced by 'postgresqlPackages.pg_cron'"; # Converted to throw 2022-09-24
913913+ pg_hll = throw "'pg_hll' has been renamed to/replaced by 'postgresqlPackages.pg_hll'"; # Converted to throw 2022-09-24
914914+ pg_repack = throw "'pg_repack' has been renamed to/replaced by 'postgresqlPackages.pg_repack'"; # Converted to throw 2022-09-24
915915+ pg_similarity = throw "'pg_similarity' has been renamed to/replaced by 'postgresqlPackages.pg_similarity'"; # Converted to throw 2022-09-24
916916+ pg_topn = throw "'pg_topn' has been renamed to/replaced by 'postgresqlPackages.pg_topn'"; # Converted to throw 2022-09-24
917917+ pgjwt = throw "'pgjwt' has been renamed to/replaced by 'postgresqlPackages.pgjwt'"; # Converted to throw 2022-09-24
918918+ pgroonga = throw "'pgroonga' has been renamed to/replaced by 'postgresqlPackages.pgroonga'"; # Converted to throw 2022-09-24
919919+ pgtap = throw "'pgtap' has been renamed to/replaced by 'postgresqlPackages.pgtap'"; # Converted to throw 2022-09-24
920920+ plv8 = throw "'plv8' has been renamed to/replaced by 'postgresqlPackages.plv8'"; # Converted to throw 2022-09-24
921921+ postgis = throw "'postgis' has been renamed to/replaced by 'postgresqlPackages.postgis'"; # Converted to throw 2022-09-24
1153922 tilp2 = throw "tilp2 has been removed"; # Added 2022-01-15
1154923 timekeeper = throw "timekeeper has been removed"; # Added 2022-01-16
11551155- timescaledb = postgresqlPackages.timescaledb;
11561156- tlauncher = throw "tlauncher has been removed because there questionable practices and legality concerns";
11571157- tsearch_extras = postgresqlPackages.tsearch_extras;
924924+ timescaledb = throw "'timescaledb' has been renamed to/replaced by 'postgresqlPackages.timescaledb'"; # Converted to throw 2022-09-24
925925+ tsearch_extras = throw "'tsearch_extras' has been renamed to/replaced by 'postgresqlPackages.tsearch_extras'"; # Converted to throw 2022-09-24
115892611591159- pinentry_curses = pinentry-curses; # Added 2019-10-14
11601160- pinentry_emacs = pinentry-emacs; # Added 2019-10-14
11611161- pinentry_gnome = pinentry-gnome; # Added 2019-10-14
11621162- pinentry_gtk2 = pinentry-gtk2; # Added 2019-10-14
11631163- pinentry_qt = pinentry-qt; # Added 2019-10-14
11641164- pinentry_qt5 = pinentry-qt; # Added 2020-02-11
927927+ pinentry_curses = throw "'pinentry_curses' has been renamed to/replaced by 'pinentry-curses'"; # Converted to throw 2022-09-24
928928+ pinentry_emacs = throw "'pinentry_emacs' has been renamed to/replaced by 'pinentry-emacs'"; # Converted to throw 2022-09-24
929929+ pinentry_gnome = throw "'pinentry_gnome' has been renamed to/replaced by 'pinentry-gnome'"; # Converted to throw 2022-09-24
930930+ pinentry_gtk2 = throw "'pinentry_gtk2' has been renamed to/replaced by 'pinentry-gtk2'"; # Converted to throw 2022-09-24
931931+ pinentry_qt = throw "'pinentry_qt' has been renamed to/replaced by 'pinentry-qt'"; # Converted to throw 2022-09-24
932932+ pinentry_qt5 = throw "'pinentry_qt5' has been renamed to/replaced by 'pinentry-qt'"; # Converted to throw 2022-09-24
1165933 prboom = throw "prboom was removed because it was abandoned by upstream, use prboom-plus instead"; # Added 2022-04-24
11661166- privateer = throw "privateer was removed because it was broken"; # Added 2021-05-18
11671167- processing3 = processing; # Added 2019-08-16
934934+ processing3 = throw "'processing3' has been renamed to/replaced by 'processing'"; # Converted to throw 2022-09-24
1168935 procps-ng = throw "'procps-ng' has been renamed to/replaced by 'procps'"; # Converted to throw 2022-02-22
11691169- proglodyte-wasm = throw "proglodyte-wasm has been removed from nixpkgs, because it is unmaintained since 5 years with zero github stars"; # Added 2021-06-30
11701170- proj_5 = throw "Proj-5 has been removed from nixpkgs, use proj instead"; # Added 2021-04-12
11711171- prometheus-cups-exporter = throw "outdated and broken by design; removed by developer"; # Added 2021-03-16
1172936 prometheus-dmarc-exporter = dmarc-metrics-exporter; # added 2022-05-31
1173937 prometheus-mesos-exporter = throw "prometheus-mesos-exporter is deprecated and archived by upstream"; # Added 2022-04-05
1174938 prometheus-unifi-exporter = throw "prometheus-unifi-exporter is deprecated and archived by upstream, use unifi-poller instead"; # Added 2022-06-03
···1176940 pulseaudio-hsphfpd = throw "pulseaudio-hsphfpd upstream has been abandoned"; # Added 2022-03-23
1177941 pulseaudio-modules-bt = throw "pulseaudio-modules-bt has been abandoned, and is superseded by pulseaudio's native bt functionality"; # Added 2022-04-01
1178942 pulseaudioLight = throw "'pulseaudioLight' has been renamed to/replaced by 'pulseaudio'"; # Converted to throw 2022-02-22
11791179- pulseeffects = throw "Use pulseeffects-legacy if you use PulseAudio and easyeffects if you use PipeWire"; # Added 2021-02-13
11801180- pulseeffects-pw = easyeffects; # Added 2021-07-07
943943+ pulseeffects-pw = throw "'pulseeffects-pw' has been renamed to/replaced by 'easyeffects'"; # Converted to throw 2022-09-24
1181944 py-wmi-client = throw "py-wmi-client has been removed: abandoned by upstream"; # Added 2022-04-26
1182945 pydb = throw "pydb has been removed: abandoned by upstream"; # Added 2022-04-22
11831183- pyIRCt = throw "pyIRCt has been removed from nixpkgs as it is unmaintained and python2-only";
11841184- pyMAILt = throw "pyMAILt has been removed from nixpkgs as it is unmaintained and python2-only";
11851185- pybind11 = throw "pybind11 was removed because pythonPackages.pybind11 for the appropriate version of Python should be used"; # Added 2021-05-14
1186946 pybitmessage = throw "pybitmessage was removed from nixpkgs as it is stuck on python2"; # Added 2022-01-01
11871187- pygmentex = texlive.bin.pygmentex; # Added 2019-12-15
11881188- pyload = throw "pyload has been removed from nixpkgs, as it was unmaintained"; # Added 2021-03-21
11891189- pynagsystemd = throw "pynagsystemd was removed as it was unmaintained and incompatible with recent systemd versions. Instead use its fork check_systemd"; # Added 2020-10-24
11901190- pyo3-pack = maturin;
947947+ pygmentex = throw "'pygmentex' has been renamed to/replaced by 'texlive.bin.pygmentex'"; # Converted to throw 2022-09-24
948948+ pyo3-pack = throw "'pyo3-pack' has been renamed to/replaced by 'maturin'"; # Converted to throw 2022-09-24
1191949 pyrex = throw "pyrex has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-12
1192950 pyrex095 = throw "pyrex has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-12
1193951 pyrex096 = throw "pyrex has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-12
1194952 pyrit = throw "pyrit has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-01
1195953 python = python2; # Added 2022-01-11
1196954 python-swiftclient = swiftclient; # Added 2021-09-09
11971197- python2nix = throw "python2nix has been removed as it is outdated. Use e.g. nixpkgs-pytools instead"; # Added 2021-03-08
1198955 pythonFull = python2Full; # Added 2022-01-11
1199956 pythonPackages = python.pkgs; # Added 2022-01-11
1200957···1203960 QmidiNet = throw "'QmidiNet' has been renamed to/replaced by 'qmidinet'"; # Converted to throw 2022-02-22
1204961 qca-qt5 = throw "'qca-qt5' has been renamed to/replaced by 'libsForQt5.qca-qt5'"; # Converted to throw 2022-02-22
1205962 qca2 = throw "qca2 has been removed, because it depended on qt4"; # Added 2022-05-26
12061206- qcsxcad = libsForQt5.qcsxcad; # Added 2020-11-05
963963+ qcsxcad = throw "'qcsxcad' has been renamed to/replaced by 'libsForQt5.qcsxcad'"; # Converted to throw 2022-09-24
1207964 qflipper = qFlipper; # Added 2022-02-11
12081208- qmk_firmware = throw "qmk_firmware has been removed because it was broken"; # Added 2021-04-02
12091209- qr-filetransfer = throw ''"qr-filetransfer" has been renamed to "qrcp"''; # Added 2020-12-02
1210965 qshowdiff = throw "'qshowdiff' (Qt4) is unmaintained and not been updated since its addition in 2010"; # Added 2022-06-14
12111211- qt-3 = throw "qt-3 has been removed from nixpkgs, as it's unmaintained and insecure"; # Added 2021-02-15
1212966 qt5ct = libsForQt5.qt5ct; # Added 2021-12-27
12131213- qtcurve = libsForQt5.qtcurve; # Added 2020-11-07
12141214- qtkeychain = throw "the qtkeychain attribute (qt4 version) has been removes, use the qt5 version: libsForQt5.qtkeychain"; # Added 2021-08-04
967967+ qtcurve = throw "'qtcurve' has been renamed to/replaced by 'libsForQt5.qtcurve'"; # Converted to throw 2022-09-24
1215968 qtscriptgenerator = throw "'qtscriptgenerator' (Qt4) is unmaintained upstream and not used in nixpkgs"; # Added 2022-06-14
12161216- quagga = throw "quagga is no longer maintained upstream"; # Added 2021-04-22
1217969 quake3game = throw "'quake3game' has been renamed to/replaced by 'ioquake3'"; # Converted to throw 2022-02-22
12181218- quaternion-git = throw "quaternion-git has been removed in favor of the stable version 'quaternion'"; # Added 2020-04-09
12191219- quilter = throw "quilter has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-03
12201220- qvim = throw "qvim has been removed"; # Added 2020-08-31
12211221- qweechat = throw "qweechat has been removed because it was broken"; # Added 2021-03-08
1222970 qwt6 = throw "'qwt6' has been renamed to/replaced by 'libsForQt5.qwt'"; # Converted to throw 2022-02-22
12239711224972 ### R ###
122597312261226- radare2-cutter = cutter; # Added 2021-03-30
974974+ radare2-cutter = throw "'radare2-cutter' has been renamed to/replaced by 'cutter'"; # Converted to throw 2022-09-24
1227975 railcar = throw "'railcar' has been removed, as the upstream project has been abandoned"; # Added 2022-06-27
12281228- raspberrypi-tools = throw "raspberrypi-tools has been removed in favor of identical 'libraspberrypi'"; # Added 2020-12-24
1229976 rawdog = throw "rawdog has been removed from nixpkgs as it still requires python2"; # Added 2022-01-01
1230977 rdiff_backup = throw "'rdiff_backup' has been renamed to/replaced by 'rdiff-backup'"; # Converted to throw 2022-02-22
1231978 rdmd = throw "'rdmd' has been renamed to/replaced by 'dtools'"; # Converted to throw 2022-02-22
1232979 readline5 = throw "readline-5 is no longer supported in nixpkgs, please use 'readline' for main supported version"; # Added 2022-02-20
1233980 readline62 = throw "readline-6.2 is no longer supported in nixpkgs, please use 'readline' for main supported version"; # Added 2022-02-20
12341234- readline80 = throw "readline-8.0 is no longer supported in nixpkgs, please use 'readline' for main supported version or 'readline81' for most recent version"; # Added 2021-04-22
12351235- redkite = throw "redkite was archived by upstream"; # Added 2021-04-12
1236981 redshift-wlr = throw "redshift-wlr has been replaced by gammastep"; # Added 2021-12-25
1237982 reicast = throw "reicast has been removed from nixpkgs as it is unmaintained, please use flycast instead"; # Added 2022-03-07
12389831239984 # 3 resholve aliases below added 2022-04-08; drop after 2022-11-30?
12401240- resholvePackage = throw "resholvePackage has been renamed to resholve.mkDerivation";
12411241- resholveScript = throw "resholveScript has been renamed to resholve.writeScript";
12421242- resholveScriptBin = throw "resholveScriptBin has been renamed to resholve.writeScriptBin";
985985+ resholvePackage = throw "resholvePackage has been renamed to resholve.mkDerivation"; # Added 2022-04-08
986986+ resholveScript = throw "resholveScript has been renamed to resholve.writeScript"; # Added 2022-04-08
987987+ resholveScriptBin = throw "resholveScriptBin has been renamed to resholve.writeScriptBin"; # Added 2022-04-08
12439881244989 residualvm = throw "residualvm was merged to scummvm code in 2018-06-15; consider using scummvm"; # Added 2021-11-27
1245990 retroArchCores = throw "retroArchCores has been removed. Please use overrides instead, e.g.: `retroarch.override { cores = with libretro; [ ... ]; }`"; # Added 2021-11-19
12461246- retroshare06 = retroshare;
12471247- rfkill = throw "rfkill has been removed, as it's included in util-linux"; # Added 2020-08-23
991991+ retroshare06 = throw "'retroshare06' has been renamed to/replaced by 'retroshare'"; # Converted to throw 2022-09-24
1248992 riak = throw "riak has been removed due to lack of maintainer to update the package"; # Added 2022-06-22
12491249- riak-cs = throw "riak-cs is not maintained anymore"; # Added 2020-10-14
1250993 rimshot = throw "rimshot has been removed, because it is broken and no longer maintained upstream"; # Added 2022-01-15
1251994 ring-daemon = jami-daemon; # Added 2021-10-26
12521252- rkt = throw "rkt was archived by upstream"; # Added 2020-05-16
1253995 rls = throw "rls was discontinued upstream, use rust-analyzer instead"; # Added 2022-09-06
1254996 rng_tools = throw "'rng_tools' has been renamed to/replaced by 'rng-tools'"; # Converted to throw 2022-02-22
1255997 robomongo = throw "'robomongo' has been renamed to/replaced by 'robo3t'"; # Converted to throw 2022-02-22
1256998 rockbox_utility = rockbox-utility; # Added 2022-03-17
12571257- rocm-runtime-ext = throw "rocm-runtime-ext has been removed, since its functionality was added to rocm-runtime"; #added 2020-08-21
12581258- rpiboot-unstable = rpiboot; # Added 2021-07-30
999999+ rpiboot-unstable = throw "'rpiboot-unstable' has been renamed to/replaced by 'rpiboot'"; # Converted to throw 2022-09-24
12591000 rr-unstable = rr; # Added 2022-09-17
12601001 rssglx = throw "'rssglx' has been renamed to/replaced by 'rss-glx'"; # Converted to throw 2022-02-22
12611261- rssh = throw "rssh has been removed from nixpkgs: no upstream releases since 2012, several known CVEs"; # Added 2020-08-25
12621262- rtv = throw "rtv was archived by upstream. Consider using tuir, an actively maintained fork"; # Added 2021-08-08
12631263- rubyMinimal = throw "rubyMinimal was removed due to being unused";
12641264- runCommandNoCC = runCommand;
12651265- runCommandNoCCLocal = runCommandLocal;
12661266- runwayml = throw "runwayml is now a webapp"; # Added 2021-04-17
10021002+ runCommandNoCC = throw "'runCommandNoCC' has been renamed to/replaced by 'runCommand'"; # Converted to throw 2022-09-24
10031003+ runCommandNoCCLocal = throw "'runCommandNoCCLocal' has been renamed to/replaced by 'runCommandLocal'"; # Converted to throw 2022-09-24
12671004 rustracerd = throw "rustracerd has been removed because it is broken and unmaintained"; # Added 2021-10-19
12681268- rxvt_unicode = rxvt-unicode-unwrapped; # Added 2020-02-02
12691269- rxvt_unicode-with-plugins = rxvt-unicode; # Added 2020-02-02
10051005+ rxvt_unicode = throw "'rxvt_unicode' has been renamed to/replaced by 'rxvt-unicode-unwrapped'"; # Converted to throw 2022-09-24
10061006+ rxvt_unicode-with-plugins = throw "'rxvt_unicode-with-plugins' has been renamed to/replaced by 'rxvt-unicode'"; # Converted to throw 2022-09-24
1270100712711008 # The alias for linuxPackages*.rtlwifi_new is defined in ./all-packages.nix,
12721009 # due to it being inside the linuxPackagesFor function.
12731273- rtlwifi_new-firmware = rtw88-firmware; # Added 2021-03-14
10101010+ rtlwifi_new-firmware = throw "'rtlwifi_new-firmware' has been renamed to/replaced by 'rtw88-firmware'"; # Converted to throw 2022-09-24
1274101112751012 ### S ###
1276101312771277- s2n = s2n-tls; # Added 2021-03-03
10141014+ s2n = throw "'s2n' has been renamed to/replaced by 's2n-tls'"; # Converted to throw 2022-09-24
12781015 s3gof3r = throw "s3gof3r has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-04
12791016 s6Dns = throw "'s6Dns' has been renamed to/replaced by 's6-dns'"; # Converted to throw 2022-02-22
12801017 s6LinuxUtils = throw "'s6LinuxUtils' has been renamed to/replaced by 's6-linux-utils'"; # Converted to throw 2022-02-22
···12841021 salut_a_toi = throw "salut_a_toi was removed because it was broken and used Python 2"; # added 2022-06-05
12851022 sam = throw "'sam' has been renamed to/replaced by 'deadpixi-sam'"; # Converted to throw 2022-02-22
12861023 samsungUnifiedLinuxDriver = throw "'samsungUnifiedLinuxDriver' has been renamed to/replaced by 'samsung-unified-linux-driver'"; # Converted to throw 2022-02-22
12871287- sane-backends-git = sane-backends; # Added 2021-02-19
10241024+ sane-backends-git = throw "'sane-backends-git' has been renamed to/replaced by 'sane-backends'"; # Converted to throw 2022-09-24
12881025 saneBackends = throw "'saneBackends' has been renamed to/replaced by 'sane-backends'"; # Converted to throw 2022-02-22
12891026 saneBackendsGit = throw "'saneBackendsGit' has been renamed to/replaced by 'sane-backends'"; # Converted to throw 2022-02-22
12901027 saneFrontends = throw "'saneFrontends' has been renamed to/replaced by 'sane-frontends'"; # Converted to throw 2022-02-22
12911291- scaff = throw "scaff is deprecated - replaced by https://gitlab.com/jD91mZM2/inc (not in nixpkgs yet)"; # Added 2020-03-01
12921292- scallion = throw "scallion has been removed, because it is currently unmaintained upstream"; # added 2021-12-15
10281028+ scallion = throw "scallion has been removed, because it is currently unmaintained upstream"; # Added 2021-12-15
12931029 scim = throw "'scim' has been renamed to/replaced by 'sc-im'"; # Converted to throw 2022-02-22
12941030 scollector = throw "'scollector' has been renamed to/replaced by 'bosun'"; # Converted to throw 2022-02-22
12951031 scribusUnstable = throw "'scribusUnstable' has been renamed to 'scribus'"; # Added 2022-05-13
12961032 scyther = throw "scyther has been removed since it currently only supports Python 2, see https://github.com/cascremers/scyther/issues/20"; # Added 2021-10-07
12971297- sdlmame = mame; # Added 2019-10-30
12981298- seeks = throw "seeks has been removed from nixpkgs, as it was unmaintained"; # Added 2020-06-21
10331033+ sdlmame = throw "'sdlmame' has been renamed to/replaced by 'mame'"; # Converted to throw 2022-09-24
12991034 sepolgen = throw "sepolgen was merged into selinux-python"; # Added 2021-11-11
13001300- session-desktop-appimage = session-desktop;
10351035+ session-desktop-appimage = session-desktop; # Added 2022-08-22
13011036 shared_mime_info = throw "'shared_mime_info' has been renamed to/replaced by 'shared-mime-info'"; # Converted to throw 2022-02-22
13021302- inherit (libsForQt5.mauiPackages) shelf; # added 2022-05-17
10371037+ inherit (libsForQt5.mauiPackages) shelf; # Added 2022-05-17
13031038 shellinabox = throw "shellinabox has been removed from nixpkgs, as it was unmaintained upstream"; # Added 2021-12-15
13041039 sickbeard = throw "sickbeard has been removed from nixpkgs, as it was unmaintained"; # Added 2022-01-01
13051040 sickrage = throw "sickbeard has been removed from nixpkgs, as it was unmaintained"; # Added 2022-01-01
13061041 sigurlx = throw "sigurlx has been removed (upstream is gone)"; # Added 2022-01-24
13071042 skrooge2 = throw "'skrooge2' has been renamed to/replaced by 'skrooge'"; # Converted to throw 2022-02-22
13081043 skype = throw "'skype' has been renamed to/replaced by 'skypeforlinux'"; # Converted to throw 2022-02-22
13091309- skype4pidgin = throw "skype4pidgin has been remove from nixpkgs, because it stopped working when classic Skype was retired"; # Added 2021-07-14
13101310- skype_call_recorder = throw "skype_call_recorder has been removed from nixpkgs, because it stopped working when classic Skype was retired"; # Added 2020-10-31
13111311- slack-dark = slack; # Added 2020-03-27
10441044+ slack-dark = throw "'slack-dark' has been renamed to/replaced by 'slack'"; # Converted to throw 2022-09-24
13121045 slic3r-prusa3d = throw "'slic3r-prusa3d' has been renamed to/replaced by 'prusa-slicer'"; # Converted to throw 2022-02-22
13131046 slurm-full = throw "'slurm-full' has been renamed to/replaced by 'slurm'"; # Converted to throw 2022-02-22
13141314- slurm-llnl = slurm; # renamed July 2017
13151315- slurm-llnl-full = slurm-full; # renamed July 2017
10471047+ slurm-llnl = throw "'slurm-llnl' has been renamed to/replaced by 'slurm'"; # Converted to throw 2022-09-24
10481048+ slurm-llnl-full = throw "'slurm-llnl-full' has been renamed to/replaced by 'slurm-full'"; # Converted to throw 2022-09-24
13161049 smbclient = throw "'smbclient' has been renamed to/replaced by 'samba'"; # Converted to throw 2022-02-22
13171317- smugline = throw "smugline has been removed from nixpkgs, as it's unmaintained and depends on deprecated libraries"; # Added 2020-11-04
13181050 snack = throw "snack has been removed: broken for 5+ years"; # Added 2022-04-21
13191051 soldat-unstable = opensoldat; # Added 2022-07-02
13201320- solr_8 = solr; # Added 2021-01-30
10521052+ solr_8 = throw "'solr_8' has been renamed to/replaced by 'solr'"; # Converted to throw 2022-09-24
1321105313221322- # Added 2020-02-10
13231054 sourceHanSansPackages = {
13241324- japanese = source-han-sans;
13251325- korean = source-han-sans;
13261326- simplified-chinese = source-han-sans;
13271327- traditional-chinese = source-han-sans;
10551055+ japanese = throw "'sourceHanSansPackages.japanese' has been replaced by 'source-han-sans'"; # Converted to throw 2022-09-24
10561056+ korean = throw "'sourceHanSansPackages.korean' has been replaced by 'source-han-sans'"; # Converted to throw 2022-09-24
10571057+ simplified-chinese = throw "'sourceHanSansPackages.simplified-chinese' has been replaced by 'source-han-sans'"; # Converted to throw 2022-09-24
10581058+ traditional-chinese = throw "'sourceHanSansPackages.traditional-chinese' has been replaced by 'source-han-sans'"; # Converted to throw 2022-09-24
13281059 };
13291329- source-han-sans-japanese = source-han-sans;
13301330- source-han-sans-korean = source-han-sans;
13311331- source-han-sans-simplified-chinese = source-han-sans;
13321332- source-han-sans-traditional-chinese = source-han-sans;
10601060+ source-han-sans-japanese = throw "'source-han-sans-japanese' has been renamed to/replaced by 'source-han-sans'"; # Converted to throw 2022-09-24
10611061+ source-han-sans-korean = throw "'source-han-sans-korean' has been renamed to/replaced by 'source-han-sans;#'"; # Converted to throw 2022-09-24
10621062+ source-han-sans-simplified-chinese = throw "'source-han-sans-simplified-chinese' has been renamed to/replaced by 'source-han-sans;#'"; # Converted to throw 2022-09-24
10631063+ source-han-sans-traditional-chinese = throw "'source-han-sans-traditional-chinese' has been renamed to/replaced by 'source-han-sans;#'"; # Converted to throw 2022-09-24
13331064 sourceHanSerifPackages = {
13341334- japanese = source-han-serif;
13351335- korean = source-han-serif;
13361336- simplified-chinese = source-han-serif;
13371337- traditional-chinese = source-han-serif;
10651065+ japanese = throw "'sourceHanSerifPackages.japanese' has been renamed to/replaced by 'source-han-serif'"; # Converted to throw 2022-09-24
10661066+ korean = throw "'sourceHanSerifPackages.korean' has been renamed to/replaced by 'source-han-serif'"; # Converted to throw 2022-09-24
10671067+ simplified-chinese = throw "'sourceHanSerifPackages.simplified-chinese' has been renamed to/replaced by 'source-han-serif'"; # Converted to throw 2022-09-24
10681068+ traditional-chinese = throw "'sourceHanSerifPackages.traditional-chinese' has been renamed to/replaced by 'source-han-serif'"; # Converted to throw 2022-09-24
13381069 };
13391339- source-han-serif-japanese = source-han-serif;
13401340- source-han-serif-korean = source-han-serif;
13411341- source-han-serif-simplified-chinese = source-han-serif;
13421342- source-han-serif-traditional-chinese = source-han-serif;
10701070+ source-han-serif-japanese = throw "'source-han-serif-japanese' has been renamed to/replaced by 'source-han-serif;#'"; # Converted to throw 2022-09-24
10711071+ source-han-serif-korean = throw "'source-han-serif-korean' has been renamed to/replaced by 'source-han-serif;#'"; # Converted to throw 2022-09-24
10721072+ source-han-serif-simplified-chinese = throw "'source-han-serif-simplified-chinese' has been renamed to/replaced by 'source-han-serif;#'"; # Converted to throw 2022-09-24
10731073+ source-han-serif-traditional-chinese = throw "'source-han-serif-traditional-chinese' has been renamed to/replaced by 'source-han-serif;#'"; # Converted to throw 2022-09-24
1343107413441075 sourcetrail = throw "sourcetrail has been removed: abandoned by upstream"; # Added 2022-08-14
1345107613461077 spaceOrbit = throw "'spaceOrbit' has been renamed to/replaced by 'space-orbit'"; # Converted to throw 2022-02-22
13471347- spectral = neochat; # Added 2020-12-27
10781078+ spectral = throw "'spectral' has been renamed to/replaced by 'neochat'"; # Converted to throw 2022-09-24
13481079 speech_tools = throw "'speech_tools' has been renamed to/replaced by 'speech-tools'"; # Converted to throw 2022-02-22
13491080 speedometer = throw "speedometer has been removed: abandoned by upstream"; # Added 2022-04-24
13501081 speedtest_cli = throw "'speedtest_cli' has been renamed to/replaced by 'speedtest-cli'"; # Converted to throw 2022-02-22
13511082 sphinxbase = throw "sphinxbase has been removed: unmaintained"; # Added 2022-04-24
13521083 spice_gtk = throw "'spice_gtk' has been renamed to/replaced by 'spice-gtk'"; # Converted to throw 2022-02-22
13531084 spice_protocol = throw "'spice_protocol' has been renamed to/replaced by 'spice-protocol'"; # Converted to throw 2022-02-22
13541354- spidermonkey_1_8_5 = throw "spidermonkey_1_8_5 has been removed, because it is based on Firefox 4.0 from 2011"; # added 2021-05-03
13551355- spidermonkey_38 = throw "spidermonkey_38 has been removed. Please use spidermonkey_78 instead"; # Added 2021-03-21
13561356- spidermonkey_60 = throw "spidermonkey_60 has been removed. Please use spidermonkey_78 instead"; # Added 2021-03-21
13571085 spidermonkey_68 = throw "spidermonkey_68 has been removed. Please use spidermonkey_91 instead"; # added 2022-01-04
13581358- # spidermonkey is not ABI upwards-compatible, so only allow this for nix-shell
13591359- spidermonkey = spidermonkey_78; # Added 2020-10-09
10861086+ spidermonkey = throw "'spidermonkey' has been renamed to/replaced by 'spidermonkey_78'"; # Converted to throw 2022-09-24
13601087 split2flac = throw "split2flac has been removed. Consider using the shnsplit command from shntool package or help packaging unflac."; # added 2022-01-13
13611361- spring-boot = spring-boot-cli; # added 2020-04-24
10881088+ spring-boot = throw "'spring-boot' has been renamed to/replaced by 'spring-boot-cli'"; # Converted to throw 2022-09-24
13621089 sqlite3_analyzer = throw "'sqlite3_analyzer' has been renamed to/replaced by 'sqlite-analyzer'"; # Converted to throw 2022-02-22
13631090 sqliteInteractive = throw "'sqliteInteractive' has been renamed to/replaced by 'sqlite-interactive'"; # Converted to throw 2022-02-22
13641364- squid4 = squid; # added 2019-08-22
10911091+ squid4 = throw "'squid4' has been renamed to/replaced by 'squid'"; # Converted to throw 2022-09-24
13651092 srcml = throw "'srcml' has been removed: abandoned by upstream"; # Added 2022-07-21
13661093 sshfsFuse = throw "'sshfsFuse' has been renamed to/replaced by 'sshfs-fuse'"; # Converted to throw 2022-02-22
13671094 ssmtp = throw "'ssmtp' has been removed due to the software being unmaintained. 'msmtp' can be used as a replacement"; # Added 2022-04-17
13681368- stanchion = throw "Stanchion was part of riak-cs which is not maintained anymore"; # added 2020-10-14
13691369- steam-run-native = steam-run; # added 2022-02-21
10951095+ steam-run-native = steam-run; # Added 2022-02-21
13701096 stride = throw "'stride' aka. Atlassian Stride is dead since 2019 (bought by Slack)"; # added 2022-06-15
13711371- stumpwm-git = throw "stumpwm-git has been broken for a long time and lispPackages.stumpwm follows Quicklisp that is close to git version"; # Added 2021-05-09
13721097 subversion_1_10 = throw "subversion_1_10 has been removed as it has reached its end of life"; # Added 2022-04-26
13731373- subversion19 = throw "subversion19 has been removed as it has reached its end of life"; # Added 2021-03-31
13741098 sudolikeaboss = throw "sudolikeaboss is no longer maintained by upstream"; # Added 2022-04-16
13751375- sundials_3 = throw "sundials_3 was removed in 2020-02. outdated and no longer needed";
13761099 surf-webkit2 = throw "'surf-webkit2' has been renamed to/replaced by 'surf'"; # Converted to throw 2022-02-22
13771100 swec = throw "swec has been removed; broken and abandoned upstream"; # Added 2021-10-14
13781101 sweep-visualizer = throw "'sweep-visualizer' is abondoned upstream and depends on deprecated GNOME2/GTK2"; # Added 2022-06-15
13791379- swfdec = throw "swfdec has been removed as broken and unmaintained"; # Added 2020-08-23
13801380- swtpm-tpm2 = swtpm; # Added 2021-02-26
13811381- syncthing-cli = syncthing; # Added 2021-04-06
11021102+ swtpm-tpm2 = throw "'swtpm-tpm2' has been renamed to/replaced by 'swtpm'"; # Converted to throw 2022-09-24
11031103+ syncthing-cli = throw "'syncthing-cli' has been renamed to/replaced by 'syncthing'"; # Converted to throw 2022-09-24
13821104 synology-drive = throw "synology-drive has been superseded by synology-drive-client"; # Added 2021-11-26
13831105 system_config_printer = throw "'system_config_printer' has been renamed to/replaced by 'system-config-printer'"; # Converted to throw 2022-02-22
13841384- systemd-cryptsetup-generator = throw "systemd-cryptsetup-generator is now included in the systemd package"; # Added 2020-07-12
13851385- systemd_with_lvm2 = throw "systemd_with_lvm2 is obsolete, enabled by default via the lvm module"; # Added 2020-07-12
13861106 systool = throw "'systool' has been renamed to/replaced by 'sysfsutils'"; # Converted to throw 2022-02-22
1387110713881108 ### T ###
1389110913901110 tahoelafs = throw "'tahoelafs' has been renamed to/replaced by 'tahoe-lafs'"; # Converted to throw 2022-02-22
13911391- tangogps = foxtrotgps; # Added 2020-01-26
11111111+ tangogps = throw "'tangogps' has been renamed to/replaced by 'foxtrotgps'"; # Converted to throw 2022-09-24
13921112 taplo-cli = taplo; # Added 2022-07-30
13931113 taplo-lsp = taplo; # Added 2022-07-30
13941394- tdm = throw "tdm has been removed because nobody can figure out how to fix OpenAL integration. Use precompiled binary and `steam-run` instead";
13951114 teleconsole = throw "teleconsole is archived by upstream"; # Added 2022-04-05
13961396- telepathy-qt = throw "telepathy-qt no longer supports Qt 4. Please use libsForQt5.telepathy instead"; # Added 2020-07-02
13971115 telepathy_farstream = throw "'telepathy_farstream' has been renamed to/replaced by 'telepathy-farstream'"; # Converted to throw 2022-02-22
13981116 telepathy_gabble = throw "'telepathy_gabble' has been renamed to/replaced by 'telepathy-gabble'"; # Converted to throw 2022-02-22
13991117 telepathy_glib = throw "'telepathy_glib' has been renamed to/replaced by 'telepathy-glib'"; # Converted to throw 2022-02-22
···14041122 telepathy_qt = throw "'telepathy_qt' has been renamed to/replaced by 'telepathy-qt'"; # Converted to throw 2022-02-22
14051123 telepathy_qt5 = throw "'telepathy_qt5' has been renamed to/replaced by 'libsForQt5.telepathy'"; # Converted to throw 2022-02-22
14061124 telnet = throw "'telnet' has been renamed to/replaced by 'inetutils'"; # Converted to throw 2022-02-22
14071407- terminus = throw "terminus has been removed, it was unmaintained in nixpkgs"; # Added 2021-08-21
14081125 terraform-full = throw "terraform-full has been removed, it was an alias for 'terraform.full'"; # Added 2022-08-02
14091126 terraform_0_13 = throw "terraform_0_13 has been removed from nixpkgs"; # Added 2022-06-26
14101127 terraform_0_14 = throw "terraform_0_14 has been removed from nixpkgs"; # Added 2022-06-26
···14181135 tex-gyre-termes-math = throw "'tex-gyre-termes-math' has been renamed to/replaced by 'tex-gyre-math.termes'"; # Converted to throw 2022-02-22
14191136 textadept11 = textadept; # Added 2022-06-07
14201137 tftp_hpa = throw "'tftp_hpa' has been renamed to/replaced by 'tftp-hpa'"; # Converted to throw 2022-02-22
14211421- thunderbird-68 = throw "Thunderbird 68 reached end of life with its final release 68.12.0 on 2020-08-25";
14221422- thunderbird-bin-68 = thunderbird-68;
14231423- timescale-prometheus = promscale; # Added 2020-09-29
11381138+ timescale-prometheus = throw "'timescale-prometheus' has been renamed to/replaced by 'promscale'"; # Converted to throw 2022-09-24
14241139 timetable = throw "timetable has been removed, as the upstream project has been abandoned"; # Added 2021-09-05
14251140 tkcvs = tkrev; # Added 2022-03-07
14261426- togglesg-download = throw "togglesg-download was removed 2021-04-30 as it's unmaintained"; # Added 2021-04-30
14271141 tomboy = throw "tomboy is not actively developed anymore and was removed"; # Added 2022-01-27
14281428- tomcat7 = throw "tomcat7 has been removed from nixpkgs as it has reached end of life"; # Added 2021-06-16
14291429- tomcat8 = throw "tomcat8 has been removed from nixpkgs as it has reached end of life"; # Added 2021-06-16
14301430- tomcat85 = throw "tomcat85 has been removed from nixpkgs as it has reached end of life"; # Added 2020-03-11
14311142 tor-arm = throw "tor-arm has been removed from nixpkgs as the upstream project has been abandoned"; # Added 2022-01-01
14321143 torbrowser = throw "'torbrowser' has been renamed to/replaced by 'tor-browser-bundle-bin'"; # Converted to throw 2022-02-22
14331433- torch = throw "torch has been removed, as the upstream project has been abandoned"; # Added 2020-03-28
14341434- torch-hdf5 = throw "torch-hdf5 has been removed, as the upstream project has been abandoned"; # Added 2020-03-28
14351435- torch-repl = throw "torch-repl has been removed, as the upstream project has been abandoned"; # Added 2020-03-28
14361436- torchPackages = throw "torchPackages has been removed, as the upstream project has been abandoned"; # Added 2020-03-28
14371144 trang = throw "'trang' has been renamed to/replaced by 'jing-trang'"; # Converted to throw 2022-02-22
14381145 transfig = fig2dev; # Added 2022-02-15
14391439- transmission-remote-cli = "transmission-remote-cli has been removed, as the upstream project has been abandoned. Please use tremc instead"; # Added 2020-10-14
14401146 transmission_gtk = throw "'transmission_gtk' has been renamed to/replaced by 'transmission-gtk'"; # Converted to throw 2022-02-22
14411147 transmission_remote_gtk = throw "'transmission_remote_gtk' has been renamed to/replaced by 'transmission-remote-gtk'"; # Converted to throw 2022-02-22
14421442- transporter = throw "transporter has been removed. It was archived upstream, so it's considered abandoned";
14431443- trebleshot = throw "trebleshot has been removed. It was archived upstream, so it's considered abandoned";
14441444- trilium = throw "trilium has been removed. Please use trilium-desktop instead"; # Added 2020-04-29
14451148 truecrypt = throw "'truecrypt' has been renamed to/replaced by 'veracrypt'"; # Converted to throw 2022-02-22
14461446- tuijam = throw "tuijam has been removed because Google Play Music was discontinued"; # Added 2021-03-07
14471447- turbo-geth = throw "turbo-geth has been renamed to erigon"; # Added 2021-08-08
14481149 twister = throw "twister has been removed: abandoned by upstream and python2-only"; # Added 2022-04-26
14491150 tychus = throw "tychus has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03
14501151 typora = throw "Newer versions of typora use anti-user encryption and refuse to start. As such it has been removed"; # Added 2021-09-11
···14521153 ### U ###
1453115414541155 uade123 = uade; # Added 2022-07-30
14551455- uberwriter = apostrophe; # Added 2020-04-23
14561456- ubootBeagleboneBlack = ubootAmx335xEVM; # Added 2020-01-21
11561156+ uberwriter = throw "'uberwriter' has been renamed to/replaced by 'apostrophe'"; # Converted to throw 2022-09-24
11571157+ ubootBeagleboneBlack = throw "'ubootBeagleboneBlack' has been renamed to/replaced by 'ubootAmx335xEVM'"; # Converted to throw 2022-09-24
14571158 uchiwa = throw "uchiwa is deprecated and archived by upstream"; # Added 2022-05-02
14581159 ucsFonts = throw "'ucsFonts' has been renamed to/replaced by 'ucs-fonts'"; # Converted to throw 2022-02-22
14591459- ufraw = throw "ufraw is unmaintained and has been removed from nixpkgs. Its successor, nufraw, doesn't seem to be stable enough. Consider using Darktable for now"; # Added 2020-01-11
14601160 ultrastardx-beta = throw "'ultrastardx-beta' has been renamed to/replaced by 'ultrastardx'"; # Converted to throw 2022-02-22
14611461- unicorn-emu = unicorn; # Added 2020-10-29
14621462- unifiStable = unifi6; # Added 2020-12-28
11611161+ unicorn-emu = throw "'unicorn-emu' has been renamed to/replaced by 'unicorn'"; # Converted to throw 2022-09-24
11621162+ unifiStable = throw "'unifiStable' has been renamed to/replaced by 'unifi6'"; # Converted to throw 2022-09-24
14631163 unity3d = throw "'unity3d' is unmaintained, has seen no updates in years and depends on deprecated GTK2"; # Added 2022-06-16
14641464- untrunc = untrunc-anthwlock; # Added 2021-02-01
14651465- urxvt_autocomplete_all_the_things = rxvt-unicode-plugins.autocomplete-all-the-things; # Added 2020-02-02
14661466- urxvt_bidi = rxvt-unicode-plugins.bidi; # Added 2020-02-02
14671467- urxvt_font_size = rxvt-unicode-plugins.font-size; # Added 2020-02-02
14681468- urxvt_perl = rxvt-unicode-plugins.perl; # Added 2020-02-02
14691469- urxvt_perls = rxvt-unicode-plugins.perls; # Added 2020-02-02
14701470- urxvt_tabbedex = rxvt-unicode-plugins.tabbedex; # Added 2020-02-02
14711471- urxvt_theme_switch = rxvt-unicode-plugins.theme-switch; # Added 2020-02-02
14721472- urxvt_vtwheel = rxvt-unicode-plugins.vtwheel; # Added 2020-02-02
11641164+ untrunc = throw "'untrunc' has been renamed to/replaced by 'untrunc-anthwlock'"; # Converted to throw 2022-09-24
11651165+ urxvt_autocomplete_all_the_things = throw "'urxvt_autocomplete_all_the_things' has been renamed to/replaced by 'rxvt-unicode-plugins.autocomplete-all-the-things'"; # Converted to throw 2022-09-24
11661166+ urxvt_bidi = throw "'urxvt_bidi' has been renamed to/replaced by 'rxvt-unicode-plugins.bidi'"; # Converted to throw 2022-09-24
11671167+ urxvt_font_size = throw "'urxvt_font_size' has been renamed to/replaced by 'rxvt-unicode-plugins.font-size'"; # Converted to throw 2022-09-24
11681168+ urxvt_perl = throw "'urxvt_perl' has been renamed to/replaced by 'rxvt-unicode-plugins.perl'"; # Converted to throw 2022-09-24
11691169+ urxvt_perls = throw "'urxvt_perls' has been renamed to/replaced by 'rxvt-unicode-plugins.perls'"; # Converted to throw 2022-09-24
11701170+ urxvt_tabbedex = throw "'urxvt_tabbedex' has been renamed to/replaced by 'rxvt-unicode-plugins.tabbedex'"; # Converted to throw 2022-09-24
11711171+ urxvt_theme_switch = throw "'urxvt_theme_switch' has been renamed to/replaced by 'rxvt-unicode-plugins.theme-switch'"; # Converted to throw 2022-09-24
11721172+ urxvt_vtwheel = throw "'urxvt_vtwheel' has been renamed to/replaced by 'rxvt-unicode-plugins.vtwheel'"; # Converted to throw 2022-09-24
14731173 usb_modeswitch = throw "'usb_modeswitch' has been renamed to/replaced by 'usb-modeswitch'"; # Converted to throw 2022-02-22
14741474- usbguard-nox = usbguard; # Added 2019-09-04
11741174+ usbguard-nox = throw "'usbguard-nox' has been renamed to/replaced by 'usbguard'"; # Converted to throw 2022-09-24
14751175 util-linuxCurses = util-linux; # Added 2022-04-12
14761476- utillinux = util-linux; # Added 2020-11-24
1477117614781177 ### V ###
1479117814801480- v4l_utils = v4l-utils; # Added 2019-08-07
14811481- vamp = { vampSDK = vamp-plugin-sdk; }; # Added 2020-03-26
14821482- vapor = throw "vapor was removed because it was unmaintained and upstream service no longer exists";
14831483- varnish62 = throw "varnish62 was removed from nixpkgs, because it is unmaintained upstream. Please switch to a different release"; # Added 2021-07-26
14841484- varnish63 = throw "varnish63 was removed from nixpkgs, because it is unmaintained upstream. Please switch to a different release"; # Added 2021-07-26
14851485- varnish65 = throw "varnish65 was removed from nixpkgs, because it is unmaintained upstream. Please switch to a different release"; # Added 2021-09-15
11791179+ v4l_utils = throw "'v4l_utils' has been renamed to/replaced by 'v4l-utils'"; # Converted to throw 2022-09-24
11801180+ vamp = {
11811181+ vampSDK = throw "'vamp.vampSDK' has been renamed to 'vamp-plugin-sdk'"; # Converted to throw 2022-09-24
11821182+ };
11831183+ vapor = throw "vapor was removed because it was unmaintained and upstream service no longer exists"; # Added 2022-01-15
14861184 varnish70 = throw "varnish70 was removed from nixpkgs, because it was superseded upstream. Please switch to a different release"; # Added 2022-03-17
14871487- vdirsyncerStable = vdirsyncer; # Added 2020-11-08, see https://github.com/NixOS/nixpkgs/issues/103026#issuecomment-723428168
14881488- venus = throw "venus has been removed from nixpkgs, as it's unmaintained"; # Added 2021-02-05
11851185+ vdirsyncerStable = throw "vdirsyncerStable has been replaced by vdirsyncer"; # Converted to throw 2022-09-24
14891186 vgo2nix = throw "vgo2nix has been removed, because it was deprecated. Consider using gomod2nix instead"; # added 2022-08-24
14901187 vimbWrapper = throw "'vimbWrapper' has been renamed to/replaced by 'vimb'"; # Converted to throw 2022-02-22
14911491- virtinst = throw "virtinst has been removed, as it's included in virt-manager"; # Added 2021-07-21
14921188 virtuoso = throw "virtuoso has been removed, because it was unmaintained in nixpkgs"; # added 2021-12-15
14931493- virtmanager = virt-manager; # Added 2019-10-29
14941494- virtmanager-qt = virt-manager-qt; # Added 2019-10-29
11891189+ virtmanager = throw "'virtmanager' has been renamed to/replaced by 'virt-manager'"; # Converted to throw 2022-09-24
11901190+ virtmanager-qt = throw "'virtmanager-qt' has been renamed to/replaced by 'virt-manager-qt'"; # Converted to throw 2022-09-24
14951191 virtviewer = throw "'virtviewer' has been renamed to/replaced by 'virt-viewer'"; # Converted to throw 2022-02-22
14961192 vnc2flv = throw "vnc2flv has been removed: abandoned by upstream"; # Added 2022-03-21
14971193 vorbisTools = throw "'vorbisTools' has been renamed to/replaced by 'vorbis-tools'"; # Converted to throw 2022-02-22
···15011197 ### W ###
1502119815031199 wavesurfer = throw "wavesurfer has been removed: depended on snack which has been removed"; # Added 2022-04-21
15041504- way-cooler = throw "way-cooler is abandoned by its author: https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html"; # Added 2020-01-13
15051200 webbrowser = throw "webbrowser was removed because it's unmaintained upstream and was marked as broken in nixpkgs for over a year"; # Added 2022-03-21
15061201 webkit = throw "'webkit' has been renamed to/replaced by 'webkitgtk'"; # Converted to throw 2022-02-22
15071202 weechat-matrix-bridge = throw "'weechat-matrix-bridge' has been renamed to/replaced by 'weechatScripts.weechat-matrix-bridge'"; # Converted to throw 2022-02-22
···15131208 wineStable = throw "'wineStable' has been renamed to/replaced by 'winePackages.stable'"; # Converted to throw 2022-02-22
15141209 wineStaging = throw "'wineStaging' has been renamed to/replaced by 'wine-staging'"; # Converted to throw 2022-02-22
15151210 wineUnstable = throw "'wineUnstable' has been renamed to/replaced by 'winePackages.unstable'"; # Converted to throw 2022-02-22
15161516- wineWayland = wine-wayland;
12111211+ wineWayland = wine-wayland; # Added 2022-01-03
15171212 winpdb = throw "winpdb has been removed: abandoned by upstream"; # Added 2022-04-22
15181213 winusb = throw "'winusb' has been renamed to/replaced by 'woeusb'"; # Converted to throw 2022-02-22
15191214 wireguard = throw "'wireguard' has been renamed to/replaced by 'wireguard-tools'"; # Converted to throw 2022-02-22
15201215 wormhole-rs = magic-wormhole-rs; # Added 2022-05-30. preserve, reason: Arch package name, main binary name
15211521- wmii_hg = wmii;
12161216+ wmii_hg = wmii; # Added 2022-04-25
15221217 ws = throw "ws has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03
15231218 wxmupen64plus = throw "wxmupen64plus was removed because the upstream disappeared"; # Added 2022-01-31
15241219 wxcam = throw "'wxcam' has seen no updates in ten years, crashes (SIGABRT) on startup and depends on deprecated wxGTK28/GNOME2/GTK2, use 'gnome.cheese'"; # Added 2022-06-15
···15261221 ### X ###
1527122215281223 x11 = throw "'x11' has been renamed to/replaced by 'xlibsWrapper'"; # Converted to throw 2022-02-22
15291529- xara = throw "xara has been removed from nixpkgs. Unmaintained since 2006"; # Added 2020-06-24
15301224 xbmc = throw "'xbmc' has been renamed to/replaced by 'kodi'"; # Converted to throw 2022-02-22
15311225 xbmc-retroarch-advanced-launchers = kodi-retroarch-advanced-launchers; # Added 2021-11-19
15321226 xbmcPlain = throw "'xbmcPlain' has been renamed to/replaced by 'kodiPlain'"; # Converted to throw 2022-02-22
15331227 xbmcPlugins = throw "'xbmcPlugins' has been renamed to/replaced by 'kodiPackages'"; # Converted to throw 2022-02-22
15341534- xdg_utils = xdg-utils; # Added 2021-02-01
15351535- xfce4-12 = throw "xfce4-12 has been replaced by xfce4-14"; # Added 2020-03-14
12281228+ xdg_utils = throw "'xdg_utils' has been renamed to/replaced by 'xdg-utils'"; # Converted to throw 2022-09-24
15361229 xfce4-14 = xfce;
15371537- xfceUnstable = xfce4-14; # Added 2019-09-17
15381538- xineLib = xine-lib; # Added 2021-04-27
15391539- xineUI = xine-ui; # Added 2021-04-27
12301230+ xfceUnstable = throw "'xfceUnstable' has been renamed to/replaced by 'xfce4-14'"; # Converted to throw 2022-09-24
12311231+ xineLib = throw "'xineLib' has been renamed to/replaced by 'xine-lib'"; # Converted to throw 2022-09-24
12321232+ xineUI = throw "'xineUI' has been renamed to/replaced by 'xine-ui'"; # Converted to throw 2022-09-24
15401233 xmonad_log_applet_gnome3 = throw "'xmonad_log_applet_gnome3' has been renamed to/replaced by 'xmonad_log_applet'"; # Converted to throw 2022-02-22
15411234 xmpp-client = throw "xmpp-client has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02
15421542- xmpppy = throw "xmpppy has been removed from nixpkgs as it is unmaintained and python2-only";
15431235 xp-pen-g430 = throw "xp-pen-g430 has been renamed to xp-pen-g430-driver"; # Converted to throw 2022-06-23
15441236 xpf = throw "xpf has been removed: abandoned by upstream"; # Added 2022-04-26
15451237 xf86_video_nouveau = throw "'xf86_video_nouveau' has been renamed to/replaced by 'xorg.xf86videonouveau'"; # Converted to throw 2022-02-22
15461546- xf86_input_mtrack = throw ''
15471547- xf86_input_mtrack has been removed from nixpkgs as it is broken and
15481548- unmaintained. Working alternatives are libinput and synaptics.
15491549- '';
15501550- xf86_input_multitouch = throw "xf86_input_multitouch has been removed from nixpkgs"; # Added 2020-01-20
15511238 xlibs = throw "'xlibs' has been renamed to/replaced by 'xorg'"; # Converted to throw 2022-02-22
15521239 xow = throw (
15531240 "Upstream has ended support for 'xow' and the package has been removed" +
15541241 "from nixpkgs. Users are urged to switch to 'xone'."
15551242 ); # Added 2022-08-02
15561243 xpraGtk3 = throw "'xpraGtk3' has been renamed to/replaced by 'xpra'"; # Converted to throw 2022-02-22
15571557- xv = xxv; # Added 2020-02-22
15581558- xvfb_run = xvfb-run; # Added 2021-05-07
12441244+ xv = throw "'xv' has been renamed to/replaced by 'xxv'"; # Converted to throw 2022-09-24
12451245+ xvfb_run = throw "'xvfb_run' has been renamed to/replaced by 'xvfb-run'"; # Converted to throw 2022-09-24
1559124615601247 ### Y ###
1561124815621562- yacc = bison; # moved from top-level 2021-03-14
12491249+ yacc = throw "'yacc' has been renamed to/replaced by 'bison'"; # Converted to throw 2022-09-24
15631250 yafaray-core = libyafaray; # Added 2022-09-23
15641251 yarssr = throw "yarssr has been removed as part of the python2 deprecation"; # Added 2022-01-15
15651252 youtubeDL = throw "'youtubeDL' has been renamed to/replaced by 'youtube-dl'"; # Converted to throw 2022-02-22
15661566- ytop = throw "ytop has been abandoned by upstream. Consider switching to bottom instead";
15671567- yubikey-neo-manager = throw "yubikey-neo-manager has been removed because it was broken. Use yubikey-manager-qt instead"; # Added 2021-03-08
15681253 yuzu-ea = yuzu-early-access; # Added 2022-08-18
15691569- yuzu = yuzu-mainline; # Added 2021-01-25
12541254+ yuzu = throw "'yuzu' has been renamed to/replaced by 'yuzu-mainline'"; # Converted to throw 2022-09-24
1570125515711256 ### Z ###
1572125715731573- zabbix30 = throw "Zabbix 3.0.x is end of life, see https://www.zabbix.com/documentation/5.0/manual/installation/upgrade/sources for a direct upgrade path to 5.0.x"; # Added 2021-04-07
15741258 zdfmediathk = throw "'zdfmediathk' has been renamed to/replaced by 'mediathekview'"; # Converted to throw 2022-02-22
15751575- zimreader = throw "zimreader has been removed from nixpkgs as it has been replaced by kiwix-serve and stopped working with modern zimlib versions"; # Added 2021-03-28
15761259 zimwriterfs = throw "zimwriterfs is now part of zim-tools"; # Added 2022-06-10.
15771577-15781578- # TODO(ekleog): add ‘wasm’ alias to ‘ocamlPackages.wasm’ after 19.03
15791579- # branch-off
1580126015811261 ocamlPackages_4_00_1 = throw "'ocamlPackages_4_00_1' has been renamed to/replaced by 'ocaml-ng.ocamlPackages_4_00_1'"; # Converted to throw 2022-02-22
15821262 ocamlPackages_4_01_0 = throw "'ocamlPackages_4_01_0' has been renamed to/replaced by 'ocaml-ng.ocamlPackages_4_01_0'"; # Converted to throw 2022-02-22
···16021282 ocamlformat_0_17_0 = throw "ocamlformat_0_17_0 has been removed in favor of newer versions"; # Added 2022-06-01
16031283 ocamlformat_0_18_0 = throw "ocamlformat_0_18_0 has been removed in favor of newer versions"; # Added 2022-06-01
1604128416051605- zabbix44 = throw ''
16061606- Zabbix 4.4 is end of life. For details on upgrading to Zabbix 5.0 look at
16071607- https://www.zabbix.com/documentation/current/manual/installation/upgrade_notes_500
16081608- ''; # Added 2020-08-17
12851285+ zeroc_ice = throw "'zeroc_ice' has been renamed to 'zeroc-ice'"; # Converted to throw 2022-09-24
1609128616101610- # Added 2019-09-06
16111611- zeroc_ice = pkgs.zeroc-ice;
12871287+ dina-font-pcf = throw "'dina-font-pcf' has been renamed to/replaced by 'dina-font'"; # Converted to throw 2022-09-24
12881288+ gnatsd = throw "'gnatsd' has been renamed to/replaced by 'nats-server'"; # Converted to throw 2022-09-24
1612128916131613- # Added 2020-06-22
16141614- zeromq3 = throw "zeromq3 has been deprecated by zeromq4";
16151615- jzmq = throw "jzmq has been removed from nixpkgs, as it was unmaintained";
16161616-16171617- avian = throw ''
16181618- The package doesn't compile anymore on NixOS and both development &
16191619- maintenance is abandoned by upstream.
16201620- ''; # Cleanup before 21.11, Added 2021-05-07
16211621- ant-dracula-theme = throw "ant-dracula-theme is now dracula-theme, and theme name is Dracula instead of Ant-Dracula";
16221622- dina-font-pcf = dina-font; # Added 2020-02-09
16231623- dnscrypt-proxy = throw "dnscrypt-proxy has been removed. Please use dnscrypt-proxy2"; # Added 2020-02-02
16241624- gcc-snapshot = throw "gcc-snapshot: Marked as broken for >2 years, additionally this 'snapshot' pointed to a fairly old one from gcc7";
16251625- gnatsd = nats-server; # Added 2019-10-28
16261626-16271627- obs-gstreamer = throw ''
16281628- obs-gstreamer has been converted into a plugin for use with wrapOBS.
16291629- Its new location is obs-studio-plugins.obs-gstreamer.
16301630- ''; # Added 2021-06-01
16311631-16321632- obs-move-transition = throw ''
16331633- obs-move-transition has been converted into a plugin for use with wrapOBS.
16341634- Its new location is obs-studio-plugins.obs-move-transition.
16351635- ''; # Added 2021-06-01
16361636-16371637- obs-multi-rtmp = throw ''
16381638- obs-multi-rtmp has been converted into a plugin for use with wrapOBS.
16391639- Its new location is obs-studio-plugins.obs-multi-rtmp.
16401640- ''; # Added 2021-06-01
16411641-16421642- obs-ndi = throw ''
16431643- obs-ndi has been converted into a plugin for use with wrapOBS.
16441644- Its new location is obs-studio-plugins.obs-ndi.
16451645- ''; # Added 2021-06-01
16461646-16471647- obs-v4l2sink = throw "obs-v4l2sink is integrated into upstream OBS since version 26.1"; # Added 2021-06-01
16481648-16491649- obs-wlrobs = throw ''
16501650- wlrobs has been converted into a plugin for use with wrapOBS.
16511651- Its new location is obs-studio-plugins.wlrobs.
16521652- ''; # Added 2021-06-01
16531653-16541654- oraclejdk8psu = throw "The *psu versions of oraclejdk are no longer provided by upstream"; # Cleanup before 20.09
16551655- oraclejre8psu = oraclejdk8psu; # Cleanup before 20.09
16561656- oraclejdk8psu_distro = oraclejdk8psu; # Cleanup before 20.09
16571657- posix_man_pages = man-pages-posix; # Added 2021-04-15
16581658- riot-desktop = throw "riot-desktop is now element-desktop!"; # Cleanup before 21.05
16591659- riot-web = throw "riot-web is now element-web"; # Cleanup before 21.05
16601660- sqldeveloper_18 = throw "sqldeveloper_18 is not maintained anymore!"; # Added 2020-02-04
16611661- todolist = throw "todolist is now ultralist"; # Added 2020-12-27
16621662- tor-browser-bundle = throw "tor-browser-bundle was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead"; # Added 2020-01-10
16631663- tor-browser-unwrapped = throw "tor-browser-unwrapped was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead"; # Added 2020-01-10
12901290+ posix_man_pages = throw "'posix_man_pages' has been renamed to/replaced by 'man-pages-posix'"; # Converted to throw 2022-09-24
16641291 torchat = throw "torchat was removed because it was broken and requires Python 2"; # added 2022-06-05
16651665- ttyrec = ovh-ttyrec; # Added 2021-01-02
16661666- zplugin = zinit; # Added 2021-01-30
12921292+ ttyrec = throw "'ttyrec' has been renamed to/replaced by 'ovh-ttyrec'"; # Converted to throw 2022-09-24
12931293+ zplugin = throw "'zplugin' has been renamed to/replaced by 'zinit'"; # Converted to throw 2022-09-24
16671294 zyn-fusion = zynaddsubfx; # Added 2022-08-05
1668129516691296 inherit (stdenv.hostPlatform) system; # Added 2021-10-22
···128128 '';
129129 };
130130131131+ checkMeta = mkOption {
132132+ type = types.bool;
133133+ default = true;
134134+ description = ''
135135+ Whether to check that the `meta` attribute of derivations are correct during evaluation time.
136136+ '';
137137+ };
131138 };
132139133140in {
+31-46
pkgs/top-level/python-aliases.nix
···4040 asyncio-nats-client = nats-py; # added 2022-02-08
4141 Babel = babel; # added 2022-05-06
4242 bitcoin-price-api = throw "bitcoin-price-api has been removed, it was using setuptools 2to3 translation feautre, which has been removed in setuptools 58"; # added 2022-02-15
4343- blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29
4444- bt_proximity = bt-proximity; # added 2021-07-02
4343+ bt_proximity = throw "'bt_proximity' has been renamed to/replaced by 'bt-proximity'"; # Converted to throw 2022-09-24
4544 carrot = throw "carrot has been removed, as its development was discontinued in 2012"; # added 2022-01-18
4645 class-registry = phx-class-registry; # added 2021-10-05
4747- ConfigArgParse = configargparse; # added 2021-03-18
4646+ ConfigArgParse = throw "'ConfigArgParse' has been renamed to/replaced by 'configargparse'"; # Converted to throw 2022-09-24
4847 cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14
4948 cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23
5049 dask-xgboost = throw "dask-xgboost was removed because its features are available in xgboost"; # added 2022-05-24
5151- dateutil = python-dateutil; # added 2021-07-03
5050+ dateutil = throw "'dateutil' has been renamed to/replaced by 'python-dateutil'"; # Converted to throw 2022-09-24
5251 demjson = throw "demjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
5353- detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04
5454- dftfit = throw "dftfit dependency lammps-cython no longer builds"; # added 2021-07-04
5555- diff_cover = diff-cover; # added 2021-07-02
5656- discogs_client = discogs-client; # added 2021-07-02
5757- djangorestframework-jwt = drf-jwt; # added 2021-07-20
5252+ diff_cover = throw "'diff_cover' has been renamed to/replaced by 'diff-cover'"; # Converted to throw 2022-09-24
5353+ discogs_client = throw "'discogs_client' has been renamed to/replaced by 'discogs-client'"; # Converted to throw 2022-09-24
5454+ djangorestframework-jwt = throw "'djangorestframework-jwt' has been renamed to/replaced by 'drf-jwt'"; # Converted to throw 2022-09-24
5855 django-sampledatahelper = throw "django-sampledatahelper was removed because it is no longer compatible to latest Django version"; # added 2022-07-18
5956 django_2 = throw "Django 2 has reached it's projected EOL in 2022/04 and has therefore been removed."; # added 2022-03-05
6057 django_appconf = django-appconf; # added 2022-03-03
···6663 django_polymorphic = django-polymorphic; # added 2022-05-24
6764 django_redis = django-redis; # added 2021-10-11
6865 django_taggit = django-taggit; # added 2021-10-11
6969- dns = dnspython; # added 2017-12-10
6666+ dns = throw "'dns' has been renamed to/replaced by 'dnspython'"; # Converted to throw 2022-09-24
7067 dogpile_cache = dogpile-cache; # added 2021-10-28
7168 dogpile-core = throw "dogpile-core is no longer maintained, use dogpile-cache instead"; # added 2021-11-20
7269 eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03
7370 email_validator = email-validator; # added 2022-06-22
7471 fake_factory = throw "fake_factory has been removed because it is unused and deprecated by upstream since 2016."; # added 2022-05-30
7575- faulthandler = throw "faulthandler is built into ${python.executable}"; # added 2021-07-12
7672 flask_sqlalchemy = flask-sqlalchemy; # added 2022-07-20
7773 flask_testing = flask-testing; # added 2022-04-25
7874 flask_wtf = flask-wtf; # added 2022-05-24
7975 garminconnect-ha = garminconnect; # added 2022-02-05
8080- gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14
8176 glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28
8282- google_api_python_client = google-api-python-client; # added 2021-03-19
8383- googleapis_common_protos = googleapis-common-protos; # added 2021-03-19
7777+ google_api_python_client = throw "'google_api_python_client' has been renamed to/replaced by 'google-api-python-client'"; # Converted to throw 2022-09-24
7878+ googleapis_common_protos = throw "'googleapis_common_protos' has been renamed to/replaced by 'googleapis-common-protos'"; # Converted to throw 2022-09-24
8479 graphite_api = throw "graphite_api was removed, because it is no longer maintained"; # added 2022-07-10
8580 graphite_beacon = throw "graphite_beacon was removed, because it is no longer maintained"; # added 2022-07-09
8686- grpc_google_iam_v1 = grpc-google-iam-v1; # added 2021-08-21
8181+ grpc_google_iam_v1 = throw "'grpc_google_iam_v1' has been renamed to/replaced by 'grpc-google-iam-v1'"; # Converted to throw 2022-09-24
8782 ha-av = throw "ha-av was removed, because it is no longer maintained"; # added 2022-04-06
8888- HAP-python = hap-python; # added 2021-06-01
8383+ HAP-python = throw "'HAP-python' has been renamed to/replaced by 'hap-python'"; # Converted to throw 2022-09-24
8984 hbmqtt = throw "hbmqtt was removed because it is no longer maintained"; # added 2021-11-07
9085 hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
9186 hyperkitty = throw "Please use pkgs.mailmanPackages.hyperkitty"; # added 2022-04-29
···9590 influxgraph = throw "influxgraph has been removed because it is no longer maintained"; # added 2022-07-10
9691 jupyter_client = jupyter-client; # added 2021-10-15
9792 Keras = keras; # added 2021-11-25
9898- lammps-cython = throw "lammps-cython no longer builds and is unmaintained"; # added 2021-07-04
9993 loo-py = loopy; # added 2022-05-03
10094 Markups = markups; # added 2022-02-14
101101- MechanicalSoup = mechanicalsoup; # added 2021-06-01
9595+ MechanicalSoup = throw "'MechanicalSoup' has been renamed to/replaced by 'mechanicalsoup'"; # Converted to throw 2022-09-24
10296 memcached = python-memcached; # added 2022-05-06
10397 mailman = throw "Please use pkgs.mailman"; # added 2022-04-29
10498 mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29
···116110 poster3 = throw "poster3 is unmaintained and source is no longer available"; # added 2023-05-29
117111 postorius = throw "Please use pkgs.mailmanPackages.postorius"; # added 2022-04-29
118112 powerlineMemSegment = powerline-mem-segment; # added 2021-10-08
119119- privacyidea = throw "privacyidea has been renamed to pkgs.privacyidea"; # added 2021-06-20
120120- prometheus_client = prometheus-client; # added 2021-06-10
121121- prompt_toolkit = prompt-toolkit; # added 2021-07-22
113113+ prometheus_client = throw "'prometheus_client' has been renamed to/replaced by 'prometheus-client'"; # Converted to throw 2022-09-24
114114+ prompt_toolkit = throw "'prompt_toolkit' has been renamed to/replaced by 'prompt-toolkit'"; # Converted to throw 2022-09-24
122115 pur = throw "pur has been renamed to pkgs.pur"; # added 2021-11-08
123116 pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01
124117 pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15
···127120 pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07
128121 pyialarmxr-homeassistant = throw "The package was removed together with the component support in home-assistant 2022.7.0"; # added 2022-07-07
129122 pyjson5 = json5; # added 2022-08-28
130130- pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20
131123 PyLD = pyld; # added 2022-06-22
132124 pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0
133133- pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
134125 pyreadability = readability-lxml; # added 2022-05-24
135126 pyroute2-core = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
136127 pyroute2-ethtool = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
···143134 pysmart-smartx = pysmart; # added 2021-10-22
144135 pyspotify = throw "pyspotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29
145136 pytest_6 = pytest; # added 2022-02-10
146146- pytestcov = pytest-cov; # added 2021-01-04
147147- pytest-pep8 = pytestpep8; # added 2021-01-04
137137+ pytestcov = throw "'pytestcov' has been renamed to/replaced by 'pytest-cov'"; # Converted to throw 2022-09-24
138138+ pytest-pep8 = throw "'pytest-pep8' has been renamed to/replaced by 'pytestpep8'"; # Converted to throw 2022-09-24
148139 pytest-pep257 = throw "pytest-pep257 was removed, as the pep257 package was migrated into pycodestyle"; # added 2022-04-12
149140 pytest-pythonpath = throw "pytest-pythonpath is obsolete as of pytest 7.0.0 and has been removed"; # added 2022-03-09
150150- pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10
151151- pytestquickcheck = pytest-quickcheck; # added 2021-07-20
152152- pytestrunner = pytest-runner; # added 2021-01-04
141141+ pytestquickcheck = throw "'pytestquickcheck' has been renamed to/replaced by 'pytest-quickcheck'"; # Converted to throw 2022-09-24
142142+ pytestrunner = throw "'pytestrunner' has been renamed to/replaced by 'pytest-runner'"; # Converted to throw 2022-09-24
153143 python-igraph = igraph; # added 2021-11-11
154154- python-lz4 = lz4; # added 2018-06-01
144144+ python-lz4 = throw "'python-lz4' has been renamed to/replaced by 'lz4'"; # Converted to throw 2022-09-24
155145 python_magic = python-magic; # added 2022-05-07
156146 python_mimeparse = python-mimeparse; # added 2021-10-31
157147 python-language-server = throw "python-language-server is no longer maintained, use the python-lsp-server community fork instead."; # Added 2022-08-03
158148 python-subunit = subunit; # added 2021-09-10
159159- pytest_xdist = pytest-xdist; # added 2021-01-04
160160- python_simple_hipchat = python-simple-hipchat; # added 2021-07-21
149149+ pytest_xdist = throw "'pytest_xdist' has been renamed to/replaced by 'pytest-xdist'"; # Converted to throw 2022-09-24
150150+ python_simple_hipchat = throw "'python_simple_hipchat' has been renamed to/replaced by 'python-simple-hipchat'"; # Converted to throw 2022-09-24
161151 pytorch = torch; # added 2022-09-30
162152 pytorch-bin = torch-bin; # added 2022-09-30
163153 pytorchWithCuda = torchWithCuda; # added 2022-09-30
164154 pytorchWithoutCuda = torchWithoutCuda; # added 2022-09-30
165155 pytwitchapi = twitchapi; # added 2022-03-07
166166- qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
167156 qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages";
168157 rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05
169158 repeated_test = throw "repeated_test is no longer maintained"; # added 2022-01-11
170159 requests_oauthlib = requests-oauthlib; # added 2022-02-12
171171- requests_toolbelt = requests-toolbelt; # added 2017-09-26
160160+ requests_toolbelt = throw "'requests_toolbelt' has been renamed to/replaced by 'requests-toolbelt'"; # Converted to throw 2022-09-24
172161 roboschool = throw "roboschool is deprecated in favor of PyBullet and has been removed"; # added 2022-01-15
173173- ROPGadget = ropgadget; # added 2021-07-06
174174- rotate-backups = throw "rotate-backups was removed in favor of the top-level rotate-backups"; # added 2021-07-01
162162+ ROPGadget = throw "'ROPGadget' has been renamed to/replaced by 'ropgadget'"; # Converted to throw 2022-09-24
175163 ruamel_base = ruamel-base; # added 2021-11-01
176164 ruamel_yaml = ruamel-yaml; # added 2021-11-01
177165 ruamel_yaml_clib = ruamel-yaml-clib; # added 2021-11-01
178166 sapi-python-client = kbcstorage; # added 2022-04-20
179179- scikitlearn = scikit-learn; # added 2021-07-21
180180- selectors34 = throw "selectors34 has been removed: functionality provided by Python itself; archived by upstream."; # added 2021-06-10
181181- setuptools_scm = setuptools-scm; # added 2021-06-03
167167+ scikitlearn = throw "'scikitlearn' has been renamed to/replaced by 'scikit-learn'"; # Converted to throw 2022-09-24
168168+ setuptools_scm = throw "'setuptools_scm' has been renamed to/replaced by 'setuptools-scm'"; # Converted to throw 2022-09-24
182169 sharkiqpy = sharkiq; # added 2022-05-21
183183- smart_open = smart-open; # added 2021-03-14
184184- smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14
185185- SPARQLWrapper = sparqlwrapper;
170170+ smart_open = throw "'smart_open' has been renamed to/replaced by 'smart-open'"; # Converted to throw 2022-09-24
171171+ SPARQLWrapper = sparqlwrapper; # Added 2022-03-31
186172 sphinx_rtd_theme = sphinx-rtd-theme; # added 2022-08-03
187187- sphinxcontrib_plantuml = sphinxcontrib-plantuml; # added 2021-08-02
173173+ sphinxcontrib_plantuml = throw "'sphinxcontrib_plantuml' has been renamed to/replaced by 'sphinxcontrib-plantuml'"; # Converted to throw 2022-09-24
188174 sqlalchemy_migrate = sqlalchemy-migrate; # added 2021-10-28
189175 SQLAlchemy-ImageAttach = throw "sqlalchemy-imageattach has been removed as it is incompatible with sqlalchemy 1.4 and unmaintained"; # added 2022-04-23
190176 tensorflow-bin_2 = tensorflow-bin; # added 2021-11-25
···192178 tensorflow-estimator_2 = tensorflow-estimator; # added 2021-11-25
193179 tensorflow-tensorboard = tensorboard; # added 2022-03-06
194180 tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25
195195- tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05
196181 types-cryptography = throw "types-cryptography has been removed because it is obsolete since cryptography version 3.4.4."; # added 2022-05-30
197182 types-paramiko = throw "types-paramiko has been removed because it was unused."; # added 2022-05-30
198183 WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29
199184 webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29
200200- websocket_client = websocket-client; # added 2021-06-15
185185+ websocket_client = throw "'websocket_client' has been renamed to/replaced by 'websocket-client'"; # Converted to throw 2022-09-24
201186 xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31
202202- zc-buildout221 = zc-buildout; # added 2021-07-21
203203- zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules";
187187+ zc-buildout221 = throw "'zc-buildout221' has been renamed to/replaced by 'zc-buildout'"; # Converted to throw 2022-09-24
188188+ zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules"; # Added 2021-12-08
204189})