depot/third_party/nixpkgs/pkgs/top-level/aliases.nix

1449 lines
107 KiB
Nix
Raw Normal View History

lib: self: super:
### Deprecated aliases - for backward compatibility
### Please maintain this list in ASCIIbetical ordering.
### Hint: the "sections" are delimited by ### <letter> ###
# These aliases should not be used within nixpkgs, but exist to improve
# backward compatibility in projects outside of nixpkgs. See the
# documentation for the `allowAliases` option for more background.
# A script to convert old aliases to throws and remove old
# throws can be found in './maintainers/scripts/remove-old-aliases.py'.
# Add 'preserve, reason: reason why' after the date if the alias should not be removed.
# Try to keep them to a minimum.
# valid examples of what to preserve:
# distro aliases such as:
# debian-package-name -> nixos-package-name
with self;
let
# Removing recurseForDerivation prevents derivations of aliased attribute set
# to appear while listing all the packages available.
removeRecurseForDerivations = alias:
if alias.recurseForDerivations or false
then lib.removeAttrs alias [ "recurseForDerivations" ]
else alias;
# Disabling distribution prevents top-level aliases for non-recursed package
# sets from building on Hydra.
removeDistribute = alias:
if lib.isDerivation alias then
lib.dontDistribute alias
else alias;
transmission3Warning = { prefix ? "", suffix ? "" }: let
p = "${prefix}transmission${suffix}";
p3 = "${prefix}transmission_3${suffix}";
p4 = "${prefix}transmission_4${suffix}";
in "${p} has been renamed to ${p3} since ${p4} is also available. Note that upgrade caused data loss for some users so backup is recommended (see NixOS 24.11 release notes for details)";
# Make sure that we are not shadowing something from all-packages.nix.
checkInPkgs = n: alias:
if builtins.hasAttr n super
then throw "Alias ${n} is still in all-packages.nix"
else alias;
mapAliases = aliases:
lib.mapAttrs
(n: alias:
removeDistribute
(removeRecurseForDerivations
(checkInPkgs n alias)))
aliases;
in
mapAliases {
# Added 2018-07-16 preserve, reason: forceSystem should not be used directly in Nixpkgs.
forceSystem = system: _:
(import self.path { localSystem = { inherit system; }; });
### _ ###
_1password = lib.warn "_1password has been renamed to _1password-cli to better follow upstream name usage" _1password-cli; # Added 2024-10-24
### A ###
AusweisApp2 = ausweisapp; # Added 2023-11-08
a4term = a4; # Added 2023-10-06
acorn = throw "acorn has been removed as the upstream project was archived"; # Added 2024-04-27
acousticbrainz-client = throw "acousticbrainz-client has been removed since the AcousticBrainz project has been shut down"; # Added 2024-06-04
adtool = throw "'adtool' has been removed, as it was broken and unmaintained";
adom = throw "'adom' has been removed, as it was broken and unmaintained"; # added 2024-05-09
adoptopenjdk-bin = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `temurin-bin`"; # Added 2024-05-09
adoptopenjdk-bin-17-packages-darwin = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `temurin-bin-17`."; # Added 2024-05-09
adoptopenjdk-bin-17-packages-linux = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `temurin-bin-17`."; # Added 2024-05-09
adoptopenjdk-hotspot-bin-11 = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `temurin-bin-11`."; # Added 2024-05-09
adoptopenjdk-hotspot-bin-15 = throw "adoptopenjdk has been removed as the upstream project is deprecated. JDK 15 is also EOL. Consider using `temurin-bin-17`."; # Added 2024-05-09
adoptopenjdk-hotspot-bin-16 = throw "adoptopenjdk has been removed as the upstream project is deprecated. JDK 16 is also EOL. Consider using `temurin-bin-17`."; # Added 2024-05-09
adoptopenjdk-hotspot-bin-8 = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `temurin-bin-8`."; # Added 2024-05-09
adoptopenjdk-jre-bin = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `temurin-jre-bin`."; # Added 2024-05-09
adoptopenjdk-jre-hotspot-bin-11 = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `temurin-jre-bin-11`."; # Added 2024-05-09
adoptopenjdk-jre-hotspot-bin-15 = throw "adoptopenjdk has been removed as the upstream project is deprecated. JDK 15 is also EOL. Consider using `temurin-jre-bin-17`."; # Added 2024-05-09
adoptopenjdk-jre-hotspot-bin-16 = throw "adoptopenjdk has been removed as the upstream project is deprecated. JDK 16 is also EOL. Consider using `temurin-jre-bin-17`."; # Added 2024-05-09
adoptopenjdk-jre-hotspot-bin-8 = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `temurin-jre-bin-8`."; # Added 2024-05-09
adoptopenjdk-jre-openj9-bin-11 = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `semeru-jre-bin-11`."; # Added 2024-05-09
adoptopenjdk-jre-openj9-bin-15 = throw "adoptopenjdk has been removed as the upstream project is deprecated. JDK 15 is also EOL. Consider using `semeru-jre-bin-17`."; # Added 2024-05-09
adoptopenjdk-jre-openj9-bin-16 = throw "adoptopenjdk has been removed as the upstream project is deprecated. JDK 16 is also EOL. Consider using `semeru-jre-bin-17`."; # Added 2024-05-09
adoptopenjdk-jre-openj9-bin-8 = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `semeru-jre-bin-8`."; # Added 2024-05-09
adoptopenjdk-openj9-bin-11 = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `semeru-bin-11`."; # Added 2024-05-09
adoptopenjdk-openj9-bin-15 = throw "adoptopenjdk has been removed as the upstream project is deprecated. JDK 15 is also EOL. Consider using `semeru-bin-17`."; # Added 2024-05-09
adoptopenjdk-openj9-bin-16 = throw "adoptopenjdk has been removed as the upstream project is deprecated. JDK 16 is also EOL. Consider using `semeru-bin-17`."; # Added 2024-05-09
adoptopenjdk-openj9-bin-8 = throw "adoptopenjdk has been removed as the upstream project is deprecated. Consider using `semeru-bin-8`."; # Added 2024-05-09
# Post 24.11 branch-off, this should throw an error
addOpenGLRunpath = addDriverRunpath; # Added 2024-05-25
aeon = throw "aeon has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-07-15
afl = throw "afl has been removed as the upstream project was archived. Consider using 'aflplusplus'"; # Added 2024-04-21
agda-pkg = throw "agda-pkg has been removed due to being unmaintained"; # Added 2024-09-10"
alsaLib = throw "'alsaLib' has been renamed to/replaced by 'alsa-lib'"; # Converted to throw 2024-10-17
alsaOss = throw "'alsaOss' has been renamed to/replaced by 'alsa-oss'"; # Converted to throw 2024-10-17
alsaPluginWrapper = throw "'alsaPluginWrapper' has been renamed to/replaced by 'alsa-plugins-wrapper'"; # Converted to throw 2024-10-17
alsaPlugins = throw "'alsaPlugins' has been renamed to/replaced by 'alsa-plugins'"; # Converted to throw 2024-10-17
alsaTools = throw "'alsaTools' has been renamed to/replaced by 'alsa-tools'"; # Converted to throw 2024-10-17
alsaUtils = throw "'alsaUtils' has been renamed to/replaced by 'alsa-utils'"; # Converted to throw 2024-10-17
angelfish = throw "'angelfish' has been renamed to/replaced by 'libsForQt5.kdeGear.angelfish'"; # Converted to throw 2024-10-17
ansible_2_14 = throw "Ansible 2.14 goes end of life in 2024/05 and can't be supported throughout the 24.05 release cycle"; # Added 2024-04-11
antennas = throw "antennas has been removed as it only works with tvheadend, which nobody was willing to maintain and was stuck on an unmaintained version that required FFmpeg 4; please see https://github.com/NixOS/nixpkgs/pull/332259 if you are interested in maintaining a newer version"; # Added 2024-08-21
androidndkPkgs_23b = lib.warn "The package set `androidndkPkgs_23b` has been renamed to `androidndkPkgs_23`." androidndkPkgs_23; # Added 2024-07-21
ankisyncd = throw "ankisyncd is dead, use anki-sync-server instead"; # Added 2024-08-10
ao = libfive; # Added 2024-10-11
apacheKafka_3_5 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-06-13
antimicroX = throw "'antimicroX' has been renamed to/replaced by 'antimicrox'"; # Converted to throw 2024-10-17
appthreat-depscan = dep-scan; # Added 2024-04-10
arcanist = throw "arcanist was removed as phabricator is not supported and does not accept fixes"; # Added 2024-06-07
aria = aria2; # Added 2024-03-26
armcord = throw "ArmCord was renamed to legcord by the upstream developers. Action is required to migrate configurations between the two applications. Please see this PR for more details: https://github.com/NixOS/nixpkgs/pull/347971"; # Added 2024-10-11
aseprite-unfree = aseprite; # Added 2023-08-26
atlassian-bamboo = throw "Atlassian software has been removed, as support for the Atlassian Server products ended in February 2024 and there was insufficient interest in maintaining the Atlassian Data Center replacements"; # Added 2024-11-02
atlassian-confluence = throw "Atlassian software has been removed, as support for the Atlassian Server products ended in February 2024 and there was insufficient interest in maintaining the Atlassian Data Center replacements"; # Added 2024-11-02
atlassian-crowd = throw "Atlassian software has been removed, as support for the Atlassian Server products ended in February 2024 and there was insufficient interest in maintaining the Atlassian Data Center replacements"; # Added 2024-11-02
atlassian-jira = throw "Atlassian software has been removed, as support for the Atlassian Server products ended in February 2024 and there was insufficient interest in maintaining the Atlassian Data Center replacements"; # Added 2024-11-02
audaciousQt5 = throw "'audaciousQt5' has been removed, since audacious is built with Qt 6 now"; # Added 2024-07-06
auditBlasHook = throw "'auditBlasHook' has been removed since it never worked"; # Added 2024-04-02
aumix = throw "'aumix' has been removed due to lack of maintenance upstream. Consider using 'pamixer' for CLI or 'pavucontrol' for GUI"; # Added 2024-09-14
authy = throw "'authy' has been removed since it reached end of life"; # Added 2024-04-19
avldrums-lv2 = throw "'avldrums-lv2' has been renamed to/replaced by 'x42-avldrums'"; # Converted to throw 2024-10-17
avrlibcCross = avrlibc; # Added 2024-09-06
awesome-4-0 = awesome; # Added 2022-05-05
aws-env = throw "aws-env has been removed as the upstream project was unmaintained"; # Added 2024-06-11
aws-google-auth = throw "aws-google-auth has been removed as the upstream project was unmaintained"; # Added 2024-07-31
### B ###
badtouch = authoscope; # Project was renamed, added 20210626
baget = throw "'baget' has been removed due to being unmaintained";
bashInteractive_5 = throw "'bashInteractive_5' has been renamed to/replaced by 'bashInteractive'"; # Converted to throw 2024-10-17
bash_5 = throw "'bash_5' has been renamed to/replaced by 'bash'"; # Converted to throw 2024-10-17
BeatSaberModManager = beatsabermodmanager; # Added 2024-06-12
betterbird = throw "betterbird has been removed as there were insufficient maintainer resources to keep up with security updates"; # Added 2024-10-25
betterbird-unwrapped = throw "betterbird has been removed as there were insufficient maintainer resources to keep up with security updates"; # Added 2024-10-25
bibata-extra-cursors = throw "bibata-cursors has been removed as it was broken"; # Added 2024-07-15
bitcoin-unlimited = throw "bitcoin-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15
bitcoind-unlimited = throw "bitcoind-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15
bird2 = bird; # Added 2022-02-21
bitwarden = bitwarden-desktop; # Added 2024-02-25
blender-with-packages = args:
lib.warn "blender-with-packages is deprecated in favor of blender.withPackages, e.g. `blender.withPackages(ps: [ ps.foobar ])`"
(blender.withPackages (_: args.packages)).overrideAttrs
(lib.optionalAttrs (args ? name) { pname = "blender-" + args.name; }); # Added 2023-10-30
bless = throw "'bless' has been removed due to lack of maintenance upstream and depending on gtk2. Consider using 'imhex' or 'ghex' instead"; # Added 2024-09-15
blockbench-electron = blockbench; # Added 2024-03-16
bloom = throw "'bloom' has been removed because it was unmaintained upstream."; # Added 2024-11-02
bmap-tools = bmaptool; # Added 2024-08-05
boost_process = throw "boost_process has been removed as it is included in regular boost"; # Added 2024-05-01
bpb = throw "bpb has been removed as it is unmaintained and not compatible with recent Rust versions"; # Added 2024-04-30
bpftool = throw "'bpftool' has been renamed to/replaced by 'bpftools'"; # Converted to throw 2024-10-17
brasero-original = lib.warn "Use 'brasero-unwrapped' instead of 'brasero-original'" brasero-unwrapped; # Added 2024-09-29
bs-platform = throw "'bs-platform' was removed as it was broken, development ended and 'melange' has superseded it"; # Added 2024-07-29
budgie = throw "The `budgie` scope has been removed and all packages moved to the top-level"; # Added 2024-07-14
budgiePlugins = throw "The `budgiePlugins` scope has been removed and all packages moved to the top-level"; # Added 2024-07-14
inherit (libsForQt5.mauiPackages) buho; # added 2022-05-17
butler = throw "butler was removed because it was broken and abandoned upstream"; # added 2024-06-18
bwidget = tclPackages.bwidget; # Added 2024-10-02
# Shorter names; keep the longer name for back-compat. Added 2023-04-11
buildFHSUserEnv = buildFHSEnv;
buildFHSUserEnvChroot = buildFHSEnvChroot;
buildFHSUserEnvBubblewrap = buildFHSEnvBubblewrap;
# bitwarden_rs renamed to vaultwarden with release 1.21.0 (2021-04-30)
bitwarden_rs = vaultwarden;
bitwarden_rs-mysql = vaultwarden-mysql;
bitwarden_rs-postgresql = vaultwarden-postgresql;
bitwarden_rs-sqlite = vaultwarden-sqlite;
bitwarden_rs-vault = vaultwarden-vault;
### C ###
calligra = kdePackages.calligra; # Added 2024-09-27
callPackage_i686 = pkgsi686Linux.callPackage;
cask = emacs.pkgs.cask; # Added 2022-11-12
canonicalize-jars-hook = stripJavaArchivesHook; # Added 2024-03-17
cargo-deps = throw "cargo-deps has been removed as the repository is deleted"; # Added 2024-04-09
cargo-espflash = espflash;
cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API";
certmgr-selfsigned = certmgr; # Added 2023-11-30
challenger = taler-challenger; # Added 2024-09-04
check_smartmon = nagiosPlugins.check_smartmon; # Added 2024-05-03
check_systemd = nagiosPlugins.check_systemd; # Added 2024-05-03
check_zfs = nagiosPlugins.check_zfs; # Added 2024-05-03
check-esxi-hardware = nagiosPlugins.check_esxi_hardware; # Added 2024-05-03
check-mssql-health = nagiosPlugins.check_mssql_health; # Added 2024-05-03
check-nwc-health = nagiosPlugins.check_nwc_health; # Added 2024-05-03
check-openvpn = nagiosPlugins.check_openvpn; # Added 2024-05-03
check-ups-health = nagiosPlugins.check_ups_health; # Added 2024-05-03
check-uptime = nagiosPlugins.check_uptime; # Added 2024-05-03
check-wmiplus = nagiosPlugins.check_wmi_plus; # Added 2024-05-03
checkSSLCert = nagiosPlugins.check_ssl_cert; # Added 2024-05-03
chiaki4deck = chiaki-ng; # Added 2024-08-04
chocolateDoom = chocolate-doom; # Added 2023-05-01
ChowCentaur = chow-centaur; # Added 2024-06-12
ChowPhaser = chow-phaser; # Added 2024-06-12
ChowKick = chow-kick; # Added 2024-06-12
CHOWTapeModel = chow-tape-model; # Added 2024-06-12
chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27
cloog = throw "cloog has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13
cloog_0_18_0 = throw "cloog_0_18_0 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13
cloogppl = throw "cloogppl has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13
clang-sierraHack = throw "clang-sierraHack has been removed because it solves a problem that no longer seems to exist. Hey, what were you even doing with that thing anyway?"; # Added 2024-10-05
clang-sierraHack-stdenv = clang-sierraHack; # Added 2024-10-05
inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17
clwrapperFunction = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
CoinMP = coinmp; # Added 2024-06-12
collada-dom = opencollada; # added 2024-02-21
colorpicker = throw "'colorpicker' has been removed due to lack of maintenance upstream. Consider using 'xcolor', 'gcolor3', 'eyedropper' or 'gpick' instead"; # Added 2024-10-19
coriander = throw "'coriander' has been removed because it depends on GNOME 2 libraries"; # Added 2024-06-27
corretto19 = throw "Corretto 19 was removed as it has reached its end of life"; # Added 2024-08-01
cosmic-tasks = tasks; # Added 2024-07-04
cpp-ipfs-api = cpp-ipfs-http-client; # Project has been renamed. Added 2022-05-15
crispyDoom = crispy-doom; # Added 2023-05-01
crossLibcStdenv = stdenvNoLibc; # Added 2024-09-06
clash-geoip = throw "'clash-geoip' has been removed. Consider using 'dbip-country-lite' instead."; # added 2024-10-19
clash-verge = throw "'clash-verge' has been removed, as it was broken and unmaintained. Consider using 'clash-verge-rev' or 'clash-nyanpasu' instead"; # Added 2024-09-17
clasp = clingo; # added 2022-12-22
claws-mail-gtk3 = throw "'claws-mail-gtk3' has been renamed to/replaced by 'claws-mail'"; # Converted to throw 2024-10-17
cockroachdb-bin = cockroachdb; # 2024-03-15
codimd = throw "'codimd' has been renamed to/replaced by 'hedgedoc'"; # Converted to throw 2024-10-17
inherit (libsForQt5.mauiPackages) communicator; # added 2022-05-17
concurrencykit = throw "'concurrencykit' has been renamed to/replaced by 'libck'"; # Converted to throw 2024-10-17
containerpilot = throw "'containerpilot' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-06-09
crackmapexec = throw "'crackmapexec' has been removed as it was unmaintained. Use 'netexec' instead"; # 2024-08-11
critcl = tclPackages.critcl; # Added 2024-10-02
cups-kyodialog3 = cups-kyodialog; # Added 2022-11-12
cvs_fast_export = throw "'cvs_fast_export' has been renamed to/replaced by 'cvs-fast-export'"; # Converted to throw 2024-10-17
# these are for convenience, not for backward compat and shouldn't expire
clang9Stdenv = throw "clang9Stdenv has been removed from nixpkgs"; # Added 2024-04-08
clang12Stdenv = lowPrio llvmPackages_12.stdenv;
clang13Stdenv = lowPrio llvmPackages_13.stdenv;
clang14Stdenv = lowPrio llvmPackages_14.stdenv;
clang15Stdenv = lowPrio llvmPackages_15.stdenv;
clang16Stdenv = lowPrio llvmPackages_16.stdenv;
clang17Stdenv = lowPrio llvmPackages_17.stdenv;
clang18Stdenv = lowPrio llvmPackages_18.stdenv;
clang19Stdenv = lowPrio llvmPackages_19.stdenv;
clang-tools_9 = throw "clang-tools_9 has been removed from nixpkgs"; # Added 2024-04-08
clang_9 = throw "clang_9 has been removed from nixpkgs"; # Added 2024-04-08
clang-tools_12 = llvmPackages_12.clang-tools; # Added 2024-04-22
clang-tools_13 = llvmPackages_13.clang-tools; # Added 2024-04-22
clang-tools_14 = llvmPackages_14.clang-tools; # Added 2024-04-22
clang-tools_15 = llvmPackages_15.clang-tools; # Added 2024-04-22
clang-tools_16 = llvmPackages_16.clang-tools; # Added 2024-04-22
clang-tools_17 = llvmPackages_17.clang-tools; # Added 2024-04-22
clang-tools_18 = llvmPackages_18.clang-tools; # Added 2024-04-22
clang-tools_19 = llvmPackages_19.clang-tools; # Added 2024-08-21
cq-editor = throw "cq-editor has been removed, as it use a dependency that was disabled since python 3.8 and was last updated in 2021"; # Added 2024-05-13
### D ###
dart_stable = throw "'dart_stable' has been renamed to/replaced by 'dart'"; # Converted to throw 2024-10-17
dart-sass-embedded = throw "dart-sass-embedded has been removed from nixpkgs, as is now included in Dart Sass itself.";
dat = nodePackages.dat;
dbeaver = throw "'dbeaver' has been renamed to/replaced by 'dbeaver-bin'"; # Added 2024-05-16
dbus-map = throw "'dbus-map' has been dropped as it is unmaintained"; # Added 2024-11-01
deadpixi-sam = deadpixi-sam-unstable;
debugedit-unstable = throw "'debugedit-unstable' has been renamed to/replaced by 'debugedit'"; # Converted to throw 2024-10-17
deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2024-10-17
demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18
dgsh = throw "'dgsh' has been removed, as it was broken and unmaintained"; # added 2024-05-09
dibbler = throw "dibbler was removed because it is not maintained anymore"; # Added 2024-05-14
dillong = throw "'dillong' has been removed, as upstream is abandoned since 2021-12-13. Use either 'dillo' or 'dillo-plus'. The latter integrates features from dillong."; # Added 2024-10-07
dnnl = throw "'dnnl' has been renamed to/replaced by 'oneDNN'"; # Converted to throw 2024-10-17
dnscrypt-wrapper = throw "dnscrypt-wrapper was removed because it has been effectively unmaintained since 2018. Use DNSCcrypt support in dnsdist instead"; # Added 2024-09-14
docear = throw "Docear was removed because it was unmaintained upstream. JabRef, Zotero, or Mendeley are potential replacements."; # Added 2024-11-02
docker-compose_1 = throw "'docker-compose_1' has been removed because it has been unmaintained since May 2021. Use docker-compose instead."; # Added 2024-07-29
docker-distribution = distribution; # Added 2023-12-26
dolphin-emu-beta = dolphin-emu; # Added 2023-02-11
dolphinEmu = throw "'dolphinEmu' has been renamed to/replaced by 'dolphin-emu'"; # Converted to throw 2024-10-17
dolphinEmuMaster = throw "'dolphinEmuMaster' has been renamed to/replaced by 'dolphin-emu-beta'"; # Converted to throw 2024-10-17
dotty = scala_3; # Added 2023-08-20
dotnet-netcore = throw "'dotnet-netcore' has been renamed to/replaced by 'dotnet-runtime'"; # Converted to throw 2024-10-17
dotnet-sdk_2 = throw "'dotnet-sdk_2' has been renamed to/replaced by 'dotnetCorePackages.sdk_2_1'"; # Converted to throw 2024-10-17
dotnet-sdk_3 = throw "'dotnet-sdk_3' has been renamed to/replaced by 'dotnetCorePackages.sdk_3_1'"; # Converted to throw 2024-10-17
dotnet-sdk_5 = throw "'dotnet-sdk_5' has been renamed to/replaced by 'dotnetCorePackages.sdk_5_0'"; # Converted to throw 2024-10-17
drush = throw "drush as a standalone package has been removed because it's no longer supported as a standalone tool";
dtv-scan-tables_linuxtv = dtv-scan-tables; # Added 2023-03-03
dtv-scan-tables_tvheadend = dtv-scan-tables; # Added 2023-03-03
du-dust = dust; # Added 2024-01-19
dylibbundler = throw "'dylibbundler' has been renamed to/replaced by 'macdylibbundler'"; # Converted to throw 2024-10-17
### E ###
EBTKS = ebtks; # Added 2024-01-21
eask = eask-cli; # Added 2024-09-05
eboard = throw "'eboard' has been removed due to lack of maintenance upstream. Consider using 'kdePackages.knights' instead"; # Added 2024-10-19
ec2_ami_tools = throw "'ec2_ami_tools' has been renamed to/replaced by 'ec2-ami-tools'"; # Converted to throw 2024-10-17
ec2_api_tools = throw "'ec2_api_tools' has been renamed to/replaced by 'ec2-api-tools'"; # Converted to throw 2024-10-17
ec2-utils = amazon-ec2-utils; # Added 2022-02-01
edUnstable = throw "edUnstable was removed; use ed instead"; # Added 2024-07-01
elasticsearch7Plugins = elasticsearchPlugins;
# Electron
elixir_ls = elixir-ls; # Added 2023-03-20
# Emacs
emacs28-gtk2 = throw "emacs28-gtk2 was removed because GTK2 is EOL; migrate to emacs28{,-gtk3,-nox} or to more recent versions of Emacs."; # Added 2024-09-20
emacs28NativeComp = emacs28; # Added 2022-06-08
emacs28Packages = throw "'emacs28Packages' has been renamed to/replaced by 'emacs28.pkgs'"; # Converted to throw 2024-10-17
emacs28WithPackages = throw "'emacs28WithPackages' has been renamed to/replaced by 'emacs28.pkgs.withPackages'"; # Converted to throw 2024-10-17
emacsMacport = emacs-macport; # Added 2023-08-10
emacsNativeComp = emacs28NativeComp; # Added 2022-06-08
emacsWithPackages = throw "'emacsWithPackages' has been renamed to/replaced by 'emacs.pkgs.withPackages'"; # Converted to throw 2024-10-17
EmptyEpsilon = empty-epsilon; # Added 2024-07-14
enyo-doom = enyo-launcher; # Added 2022-09-09
epdfview = throw "'epdfview' has been removed due to lack of maintenance upstream. Consider using 'qpdfview' instead"; # Added 2024-10-19
epoxy = throw "'epoxy' has been renamed to/replaced by 'libepoxy'"; # Converted to throw 2024-10-17
erlang_27-rc3 = throw "erlang_27-rc3 has been removed in favor of erlang_27"; # added 2024-05-20
erlangR24 = throw "erlangR24 has been removed in favor of erlang_24"; # added 2024-05-24
erlangR24_odbc = throw "erlangR24_odbc has been removed in favor of erlang_24_odbc"; # added 2024-05-24
erlangR24_javac = throw "erlangR24_javac has been removed in favor of erlang_24_javac"; # added 2024-05-24
erlangR24_odbc_javac = throw "erlangR24_odbc_javac has been removed in favor of erlang_24_odbc_javac"; # added 2024-05-24
erlangR25 = throw "erlangR25 has been removed in favor of erlang_25"; # added 2024-05-24
erlangR25_odbc = throw "erlangR25_odbc has been removed in favor of erlang_25_odbc"; # added 2024-05-24
erlangR25_javac = throw "erlangR25_javac has been removed in favor of erlang_25_javac"; # added 2024-05-24
erlangR25_odbc_javac = throw "erlangR25_odbc_javac has been removed in favor of erlang_25_odbc_javac"; # added 2024-05-24
erlangR26 = throw "erlangR26 has been removed in favor of erlang_26"; # added 2024-05-24
erlangR26_odbc = throw "erlangR26_odbc has been removed in favor of erlang_26_odbc"; # added 2024-05-24
erlangR26_javac = throw "erlangR26_javac has been removed in favor of erlang_26_javac"; # added 2024-05-24
erlangR26_odbc_javac = throw "erlangR26_odbc_javac has been removed in favor of erlang_26_odbc_javac"; # added 2024-05-24
ethabi = throw "ethabi has been removed due to lack of maintainence upstream and no updates in Nixpkgs"; # Added 2024-07-16
eww-wayland = lib.warn "eww now can build for X11 and wayland simultaneously, so `eww-wayland` is deprecated, use the normal `eww` package instead." eww;
### F ###
fahcontrol = throw "fahcontrol has been removed because the download is no longer available"; # added 2024-09-24
fahviewer = throw "fahviewer has been removed because the download is no longer available"; # added 2024-09-24
fam = throw "'fam' (aliased to 'gamin') has been removed as it is unmaintained upstream"; # Added 2024-04-19
faustStk = faustPhysicalModeling; # Added 2023-05-16
fastnlo = throw "'fastnlo' has been renamed to/replaced by 'fastnlo-toolkit'"; # Converted to throw 2024-10-17
fastnlo_toolkit = fastnlo-toolkit; # Added 2024-01-03
fcitx5-catppuccin = catppuccin-fcitx5; # Added 2024-06-19
inherit (luaPackages) fennel; # Added 2022-09-24
ferdi = throw "'ferdi' has been removed, upstream does not exist anymore and the package is insecure"; # Added 2024-08-22
fetchFromGithub = throw "You meant fetchFromGitHub, with a capital H"; # preserve
ffmpeg_5 = throw "ffmpeg_5 has been removed, please use another version"; # Added 2024-07-12
ffmpeg_5-headless = throw "ffmpeg_5-headless has been removed, please use another version"; # Added 2024-07-12
ffmpeg_5-full = throw "ffmpeg_5-full has been removed, please use another version"; # Added 2024-07-12
FIL-plugins = fil-plugins; # Added 2024-06-12
fileschanged = throw "'fileschanged' has been removed as it is unmaintained upstream"; # Added 2024-04-19
finger_bsd = bsd-finger;
fingerd_bsd = bsd-fingerd;
firefox-esr-115 = throw "The Firefox 115 ESR series has reached its end of life. Upgrade to `firefox-esr` or `firefox-esr-128` instead.";
firefox-esr-115-unwrapped = throw "The Firefox 115 ESR series has reached its end of life. Upgrade to `firefox-esr-unwrapped` or `firefox-esr-128-unwrapped` instead.";
firefox-wayland = firefox; # Added 2022-11-15
firmwareLinuxNonfree = linux-firmware; # Added 2022-01-09
fishfight = jumpy; # Added 2022-08-03
fit-trackee = fittrackee; # added 2024-09-03
flashrom-stable = flashprog; # Added 2024-03-01
flatbuffers_2_0 = flatbuffers; # Added 2022-05-12
flutter313 = throw "flutter313 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2024-10-05
flutter316 = throw "flutter316 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2024-10-05
flutter322 = throw "flutter322 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2024-10-05
flutter323 = throw "flutter323 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2024-10-05
foldingathome = throw "'foldingathome' has been renamed to/replaced by 'fahclient'"; # Converted to throw 2024-10-17
forgejo-actions-runner = forgejo-runner; # Added 2024-04-04
fractal-next = fractal; # added 2023-11-25
framework-system-tools = framework-tool; # added 2023-12-09
francis = kdePackages.francis; # added 2024-07-13
frostwire = throw "frostwire was removed, as it was broken due to reproducibility issues, use `frostwire-bin` package instead."; # added 2024-05-17
fuse2fs = if stdenv.hostPlatform.isLinux then e2fsprogs.fuse2fs else null; # Added 2022-03-27 preserve, reason: convenience, arch has a package named fuse2fs too.
fuse-common = throw "fuse-common was removed, because the udev rule was early included by systemd-udevd and the config is done by NixOS module `programs.fuse`"; # added 2024-09-29
futuresql = libsForQt5.futuresql; # added 2023-11-11
fx_cast_bridge = fx-cast-bridge; # added 2023-07-26
fcitx5-chinese-addons = libsForQt5.fcitx5-chinese-addons; # Added 2024-03-01
fcitx5-configtool = libsForQt5.fcitx5-configtool; # Added 2024-03-01
fcitx5-skk-qt = libsForQt5.fcitx5-skk-qt; # Added 2024-03-01
fcitx5-unikey = libsForQt5.fcitx5-unikey; # Added 2024-03-01
fcitx5-with-addons = libsForQt5.fcitx5-with-addons; # Added 2024-03-01
### G ###
g4music = gapless; # Added 2024-07-26
g4py = throw "'g4py' has been renamed to/replaced by 'python3Packages.geant4'"; # Converted to throw 2024-10-17
gamin = throw "'gamin' has been removed as it is unmaintained upstream"; # Added 2024-04-19
gcc48 = throw "gcc48 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-10
gcc49 = throw "gcc49 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-11
gcc49Stdenv = throw "gcc49Stdenv has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-11
gcc6 = throw "gcc6 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13
gcc6Stdenv = throw "gcc6Stdenv has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13
gcc10StdenvCompat = if stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "11" then gcc10Stdenv else stdenv; # Added 2024-03-21
gcj = gcj6; # Added 2024-09-13
gcj6 = throw "gcj6 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13
gcolor2 = throw "'gcolor2' has been removed due to lack of maintenance upstream and depending on gtk2. Consider using 'gcolor3' or 'eyedropper' instead"; # Added 2024-09-15
gfortran48 = throw "'gfortran48' has been removed from nixpkgs"; # Added 2024-09-10
gfortran49 = throw "'gfortran49' has been removed from nixpkgs"; # Added 2024-09-11
ghostwriter = libsForQt5.kdeGear.ghostwriter; # Added 2023-03-18
gmp5 = throw "'gmp5' has been removed as it is unmaintained. Consider using 'gmp' instead"; # Added 2024-10-28
gmpc = throw "'gmpc' has been removed due to lack of maintenance upstream. Consider using 'plattenalbum' instead"; # Added 2024-09-14
gmtk = throw "'gmtk' has been removed due to lack of maintenance upstream"; # Added 2024-09-14
gmtp = throw "'gmtp' has been removed due to lack of maintenance upstream. Consider using 'gnome-music' instead"; # Added 2024-09-14
gnome-latex = throw "'gnome-latex' has been superseded by 'enter-tex'"; # Added 2024-09-18
gnu-cobol = gnucobol; # Added 2024-09-17
gogs = throw ''
Gogs development has stalled. Also, it has several unpatched, critical vulnerabilities that
weren't addressed within a year: https://github.com/gogs/gogs/issues/7777
Consider migrating to forgejo or gitea.
''; # Added 2024-10-12
git-backup = throw "git-backup has been removed, as it has been abandoned upstream. Consider using git-backup-go instead.";
git-credential-1password = throw "'git-credential-1password' has been removed, as the upstream project is deleted."; # Added 2024-05-20
gitAndTools = self // {
darcsToGit = darcs-to-git;
gitAnnex = git-annex;
gitBrunch = git-brunch;
gitFastExport = git-fast-export;
gitRemoteGcrypt = git-remote-gcrypt;
svn_all_fast_export = svn-all-fast-export;
topGit = top-git;
}; # Added 2021-01-14
glew-egl = lib.warn "'glew-egl' is now provided by 'glew' directly" glew; # Added 2024-08-11
glfw-wayland = glfw; # Added 2024-04-19
glfw-wayland-minecraft = glfw3-minecraft; # Added 2024-05-08
globalprotect-openconnect = throw "'globalprotect-openconnect' has been renamed to/replaced by 'gpauth' and 'gpclient'"; # Added 2024-09-21
glxinfo = mesa-demos; # Added 2024-07-04
gmailieer = throw "'gmailieer' has been renamed to/replaced by 'lieer'"; # Converted to throw 2024-10-17
gnatboot11 = gnat-bootstrap11;
gnatboot12 = gnat-bootstrap12;
gnatboot = gnat-bootstrap;
gnatcoll-core = gnatPackages.gnatcoll-core; # Added 2024-02-25
gnatcoll-gmp = gnatPackages.gnatcoll-gmp; # Added 2024-02-25
gnatcoll-iconv = gnatPackages.gnatcoll-iconv; # Added 2024-02-25
gnatcoll-lzma = gnatPackages.gnatcoll-lzma; # Added 2024-02-25
gnatcoll-omp = gnatPackages.gnatcoll-omp; # Added 2024-02-25
gnatcoll-python3 = gnatPackages.gnatcoll-python3; # Added 2024-02-25
gnatcoll-readline = gnatPackages.gnatcoll-readline; # Added 2024-02-25
gnatcoll-syslog = gnatPackages.gnatcoll-syslog; # Added 2024-02-25
gnatcoll-zlib = gnatPackages.gnatcoll-zlib; # Added 2024-02-25
gnatcoll-postgres = gnatPackages.gnatcoll-postgres; # Added 2024-02-25
gnatcoll-sql = gnatPackages.gnatcoll-sql; # Added 2024-02-25
gnatcoll-sqlite = gnatPackages.gnatcoll-sqlite; # Added 2024-02-25
gnatcoll-xref = gnatPackages.gnatcoll-xref; # Added 2024-02-25
gnatcoll-db2ada = gnatPackages.gnatcoll-db2ada; # Added 2024-02-25
gnatinspect = gnatPackages.gnatinspect; # Added 2024-02-25
gnome-dictionary = throw "'gnome-dictionary' has been removed as it has been archived upstream. Consider using 'wordbook' instead"; # Added 2024-09-14
gnome-firmware-updater = gnome-firmware; # added 2022-04-14
gnome-hexgl = throw "'gnome-hexgl' has been removed due to lack of maintenance upstream"; # Added 2024-09-14
gnome-passwordsafe = gnome-secrets; # added 2022-01-30
gnome_mplayer = throw "'gnome_mplayer' has been removed due to lack of maintenance upstream. Consider using 'celluloid' instead"; # Added 2024-09-14
gnome-resources = resources; # added 2023-12-10
gmock = throw "'gmock' has been renamed to/replaced by 'gtest'"; # Converted to throw 2024-10-17
gnome3 = throw "'gnome3' has been renamed to/replaced by 'gnome'"; # Converted to throw 2024-10-17
gnuradio3_9 = throw "gnuradio3_9 has been removed because it is not compatible with the latest volk and it had no dependent packages which justified it's distribution"; # Added 2024-07-28
gnuradio3_9Minimal = throw "gnuradio3_9Minimal has been removed because it is not compatible with the latest volk and it had no dependent packages which justified it's distribution"; # Added 2024-07-28
gnuradio3_9Packages = throw "gnuradio3_9Minimal has been removed because it is not compatible with the latest volk and it had no dependent packages which justified it's distribution"; # Added 2024-07-28
gn1924 = throw "gn1924 has been removed because it was broken and no longer used by envoy."; # Added 2024-11-03
gobby5 = throw "'gobby5' has been renamed to/replaced by 'gobby'"; # Converted to throw 2024-10-17
gradle_6 = throw "Gradle 6 has been removed, as it is end-of-life (https://endoflife.date/gradle) and has many vulnerabilities that are not resolved until Gradle 7."; # Added 2024-10-30
gradle_6-unwrapped = throw "Gradle 6 has been removed, as it is end-of-life (https://endoflife.date/gradle) and has many vulnerabilities that are not resolved until Gradle 7."; # Added 2024-10-30
#godot
go-thumbnailer = thud; # Added 2023-09-21
go-upower-notify = upower-notify; # Added 2024-07-21
gpicview = throw "'gpicview' has been removed due to lack of maintenance upstream and depending on gtk2. Consider using 'loupe', 'gthumb' or 'image-roll' instead"; # Added 2024-09-15
gprbuild-boot = gnatPackages.gprbuild-boot; # Added 2024-02-25;
gqview = throw "'gqview' has been removed due to lack of maintenance upstream and depending on gtk2. Consider using 'gthumb' instead";
grafana_reporter = grafana-reporter; # Added 2024-06-09
grapefruit = throw "'grapefruit' was removed due to being blocked by Roblox, rendering the package useless"; # Added 2024-08-23
graylog-3_3 = throw "graylog 3.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 3.x to latest series."; # Added 2023-10-09
graylog-4_0 = throw "graylog 4.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 4.x to latest series."; # Added 2023-10-09
graylog-4_3 = throw "graylog 4.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 4.x to latest series."; # Added 2023-10-09
graylog-5_0 = throw "graylog 5.0.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 5.0.x to latest series."; # Added 2024-02-15
gringo = clingo; # added 2022-11-27
grub2_full = grub2; # Added 2022-11-18
gtetrinet = throw "'gtetrinet' has been removed because it depends on GNOME 2 libraries"; # Added 2024-06-27
gtk2fontsel = throw "'gtk2fontsel' has been removed due to lack of maintenance upstream. GTK now has a built-in font chooser so it's no longer needed for newer apps"; # Added 2024-10-19
gtkcord4 = dissent; # Added 2024-03-10
gtkperf = throw "'gtkperf' has been removed due to lack of maintenance upstream"; # Added 2024-09-14
guardian-agent = throw "'guardian-agent' has been removed, as it hasn't been maintained upstream in years and accumulated many vulnerabilities"; # Added 2024-06-09
guile-disarchive = disarchive; # Added 2023-10-27
### H ###
HentaiAtHome = hentai-at-home; # Added 2024-06-12
hll2390dw-cups = throw "The hll2390dw-cups package was dropped since it was unmaintained."; # Added 2024-06-21
hop-cli = throw "hop-cli has been removed as the service has been shut-down"; # Added 2024-08-13
ht-rust = throw "'ht-rust' has been renamed to/replaced by 'xh'"; # Converted to throw 2024-10-17
hydra_unstable = hydra; # Added 2024-08-22
hydron = throw "hydron has been removed as the project has been archived upstream since 2022 and is affected by a severe remote code execution vulnerability";
### I ###
i3-gaps = i3; # Added 2023-01-03
ib-tws = throw "ib-tws has been removed from nixpkgs as it was broken"; # Added 2024-07-15
ib-controller = throw "ib-controller has been removed from nixpkgs as it was broken"; # Added 2024-07-15
imagemagick7Big = throw "'imagemagick7Big' has been renamed to/replaced by 'imagemagickBig'"; # Converted to throw 2024-10-17
imagemagick7 = throw "'imagemagick7' has been renamed to/replaced by 'imagemagick'"; # Converted to throw 2024-10-17
imagemagick7_light = throw "'imagemagick7_light' has been renamed to/replaced by 'imagemagick_light'"; # Converted to throw 2024-10-17
immersed-vr = lib.warn "'immersed-vr' has been renamed to 'immersed'" immersed; # Added 2024-08-11
incrtcl = tclPackages.incrtcl; # Added 2024-10-02
input-utils = throw "The input-utils package was dropped since it was unmaintained."; # Added 2024-06-21
index-fm = libsForQt5.mauiPackages.index; # added 2022-05-17
inotifyTools = inotify-tools;
inter-ui = throw "'inter-ui' has been renamed to/replaced by 'inter'"; # Converted to throw 2024-10-17
ipfs = kubo; # Added 2022-09-27
ipfs-migrator-all-fs-repo-migrations = kubo-migrator-all-fs-repo-migrations; # Added 2022-09-27
ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27
ipfs-migrator = kubo-migrator; # Added 2022-09-27
iproute = throw "'iproute' has been renamed to/replaced by 'iproute2'"; # Converted to throw 2024-10-17
irrlichtmt = throw "irrlichtmt has been removed because it was moved into the Minetest repo"; # Added 2024-08-12
isl_0_11 = throw "isl_0_11 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13
isl_0_14 = throw "isl_0_14 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-09-13
iso-flags-png-320x420 = lib.warn "iso-flags-png-320x420 has been renamed to iso-flags-png-320x240" iso-flags-png-320x240; # Added 2024-07-17
itktcl = tclPackages.itktcl; # Added 2024-10-02
### J ###
jack2Full = throw "'jack2Full' has been renamed to/replaced by 'jack2'"; # Converted to throw 2024-10-17
jami-client-qt = jami-client; # Added 2022-11-06
jami-client = jami; # Added 2023-02-10
jami-daemon = jami.daemon; # Added 2023-02-10
javacard-devkit = throw "javacard-devkit was dropped due to having a dependency on the Oracle JDK, as well as being several years out-of-date."; # Added 2024-11-01
jd-cli = throw "jd-cli has been removed due to upstream being unmaintained since 2019. Other Java decompilers in Nixpkgs include bytecode-viewer (GUI), cfr (CLI), and procyon (CLI)."; # Added 2024-10-30
jd-gui = throw "jd-gui has been removed due to a dependency on the dead JCenter Bintray. Other Java decompilers in Nixpkgs include bytecode-viewer (GUI), cfr (CLI), and procyon (CLI)."; # Added 2024-10-30
jsawk = throw "'jsawk' has been removed because it is unmaintained upstream"; # Added 2028-08-07
# Julia
julia_16-bin = throw "'julia_16-bin' has been removed from nixpkgs as it has reached end of life"; # Added 2024-10-08
jush = throw "jush has been removed from nixpkgs because it is unmaintained"; # Added 2024-05-28
### K ###
k3s_1_26 = throw "'k3s_1_26' has been removed from nixpkgs as it has reached end of life"; # Added 2024-05-20
k3s_1_27 = throw "'k3s_1_27' has been removed from nixpkgs as it has reached end of life on 2024-06-28"; # Added 2024-06-01
# k3d was a 3d editing software k-3d - "k3d has been removed because it was broken and has seen no release since 2016" Added 2022-01-04
# now kube3d/k3d will take it's place
kube3d = k3d; # Added 2022-0705
kafkacat = throw "'kafkacat' has been renamed to/replaced by 'kcat'"; # Converted to throw 2024-10-17
kak-lsp = kakoune-lsp; # Added 2024-04-01
kargo = throw "kargo was removed as it is deprecated upstream and depends on the removed boto package"; # Added 2024-09-22
kdbplus = throw "'kdbplus' has been removed from nixpkgs"; # Added 2024-05-06
kdeconnect = throw "'kdeconnect' has been renamed to/replaced by 'plasma5Packages.kdeconnect-kde'"; # Converted to throw 2024-10-17
keepkey_agent = keepkey-agent; # added 2024-01-06
kerberos = throw "'kerberos' has been renamed to/replaced by 'krb5'"; # Converted to throw 2024-10-17
kexectools = throw "'kexectools' has been renamed to/replaced by 'kexec-tools'"; # Converted to throw 2024-10-17
keyfinger = throw "keyfinder has been removed as it was abandoned upstream and did not build; consider using mixxx or keyfinder-cli"; # Addd 2024-08-25
keysmith = throw "'keysmith' has been renamed to/replaced by 'libsForQt5.kdeGear.keysmith'"; # Converted to throw 2024-10-17
kgx = gnome-console; # Added 2022-02-19
kibana7 = throw "Kibana 7.x has been removed from nixpkgs as it depends on an end of life Node.js version and received no maintenance in time."; # Added 2023-30-10
kibana = kibana7;
kio-admin = libsForQt5.kdeGear.kio-admin; # Added 2023-03-18
kiwitalk = throw "KiwiTalk has been removed because the upstream has been deprecated at the request of Kakao and it's now obsolete."; # Added 2024-10-10
kodiGBM = kodi-gbm;
kodiPlain = kodi;
kodiPlainWayland = kodi-wayland;
kodiPlugins = kodiPackages; # Added 2021-03-09;
kramdown-rfc2629 = throw "'kramdown-rfc2629' has been renamed to/replaced by 'rubyPackages.kramdown-rfc2629'"; # Converted to throw 2024-10-17
krb5Full = krb5;
krita-beta = throw "'krita-beta' has been renamed to/replaced by 'krita'"; # Converted to throw 2024-10-17
kubei = kubeclarity; # Added 2023-05-20
### L ###
l3afpad = throw "'l3afpad' has been removed due to lack of maintenance upstream. Consider using 'xfce.mousepad' instead"; # Added 2024-09-14
larynx = piper-tts; # Added 2023-05-09
LASzip = laszip; # Added 2024-06-12
LASzip2 = laszip_2; # Added 2024-06-12
latinmodern-math = lmmath;
leafpad = throw "'leafpad' has been removed due to lack of maintenance upstream. Consider using 'xfce.mousepad' instead"; # Added 2024-10-19
ledger_agent = ledger-agent; # Added 2024-01-07
lfs = dysk; # Added 2023-07-03
libAfterImage = throw "'libAfterImage' has been removed from nixpkgs, as it's no longer in development for a long time"; # Added 2024-06-01
libav = throw "libav has been removed as it was insecure and abandoned upstream for over half a decade; please use FFmpeg"; # Added 2024-08-25
libav_0_8 = libav; # Added 2024-08-25
libav_11 = libav; # Added 2024-08-25
libav_12 = libav; # Added 2024-08-25
libav_all = libav; # Added 2024-08-25
libayatana-indicator-gtk3 = libayatana-indicator; # Added 2022-10-18
libayatana-appindicator-gtk3 = libayatana-appindicator; # Added 2022-10-18
libbencodetools = bencodetools; # Added 2022-07-30
libbpf_1 = libbpf; # Added 2022-12-06
libbson = mongoc; # Added 2024-03-11
libgme = game-music-emu; # Added 2022-07-20
libgnome-keyring3 = libgnome-keyring; # Added 2024-06-22
libgpgerror = throw "'libgpgerror' has been renamed to/replaced by 'libgpg-error'"; # Converted to throw 2024-10-17
libheimdal = heimdal; # Added 2022-11-18
libiconv-darwin = darwin.libiconv;
libixp_hg = libixp;
libjpeg_drop = throw "'libjpeg_drop' has been renamed to/replaced by 'libjpeg_original'"; # Converted to throw 2024-10-17
liblastfm = throw "'liblastfm' has been renamed to/replaced by 'libsForQt5.liblastfm'"; # Converted to throw 2024-10-17
liboop = throw "liboop has been removed as it is unmaintained upstream."; # Added 2024-08-14
libpqxx_6 = throw "libpqxx_6 has been removed, please use libpqxx"; # Added 2024-10-02
libpulseaudio-vanilla = libpulseaudio; # Added 2022-04-20
libquotient = libsForQt5.libquotient; # Added 2023-11-11
librarian-puppet-go = throw "'librarian-puppet-go' has been removed, as it's upstream is unmaintained"; # Added 2024-06-10
librdf = throw "'librdf' has been renamed to/replaced by 'lrdf'"; # Converted to throw 2024-10-17
LibreArp = librearp; # Added 2024-06-12
LibreArp-lv2 = librearp-lv2; # Added 2024-06-12
libreddit = throw "'libreddit' has been removed because it is unmaintained upstream. Consider using 'redlib', a maintained fork"; # Added 2024-07-17
librtlsdr = rtl-sdr; # Added 2023-02-18
librewolf-wayland = librewolf; # Added 2022-11-15
libseat = throw "'libseat' has been renamed to/replaced by 'seatd'"; # Converted to throw 2024-10-17
libsForQt515 = libsForQt5; # Added 2022-11-24
libtensorflow-bin = libtensorflow; # Added 2022-09-25
libtorrentRasterbar = throw "'libtorrentRasterbar' has been renamed to/replaced by 'libtorrent-rasterbar'"; # Converted to throw 2024-10-17
libtorrentRasterbar-1_2_x = throw "'libtorrentRasterbar-1_2_x' has been renamed to/replaced by 'libtorrent-rasterbar-1_2_x'"; # Converted to throw 2024-10-17
libtorrentRasterbar-2_0_x = throw "'libtorrentRasterbar-2_0_x' has been renamed to/replaced by 'libtorrent-rasterbar-2_0_x'"; # Converted to throw 2024-10-17
libungif = throw "'libungif' has been renamed to/replaced by 'giflib'"; # Converted to throw 2024-10-17
libusb = throw "'libusb' has been renamed to/replaced by 'libusb1'"; # Converted to throw 2024-10-17
libvpx_1_8 = throw "libvpx_1_8 has been removed because it is impacted by security issues and not used in nixpkgs, move to 'libvpx'"; # Added 2024-07-26
libwnck3 = libwnck;
libyamlcpp = yaml-cpp; # Added 2023-01-29
libyamlcpp_0_3 = yaml-cpp_0_3; # Added 2023-01-29
lightdm_gtk_greeter = lightdm-gtk-greeter; # Added 2022-08-01
lightstep-tracer-cpp = throw "lightstep-tracer-cpp is deprecated since 2022-08-29; the upstream recommends migration to opentelemetry projects.";
linux_wallpaperengine = throw "linux_wallpaperengine was removed due to freeimage dependency"; # Added 2024-07-19
lispPackages_new = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
lispPackages = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
lispPackagesFor = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
Literate = literate; # Added 2024-06-12
llama = walk; # Added 2023-01-23
# Linux kernels
linux-rt_5_10 = linuxKernel.kernels.linux_rt_5_10;
linux-rt_5_15 = linuxKernel.kernels.linux_rt_5_15;
linux-rt_5_4 = linuxKernel.kernels.linux_rt_5_4;
linux-rt_6_1 = linuxKernel.kernels.linux_rt_6_1;
linuxPackages_4_14 = linuxKernel.packages.linux_4_14;
linuxPackages_4_19 = linuxKernel.packages.linux_4_19;
linuxPackages_5_4 = linuxKernel.packages.linux_5_4;
linuxPackages_5_10 = linuxKernel.packages.linux_5_10;
linuxPackages_5_15 = linuxKernel.packages.linux_5_15;
linuxPackages_6_1 = linuxKernel.packages.linux_6_1;
linuxPackages_6_4 = linuxKernel.packages.linux_6_4;
linuxPackages_6_5 = linuxKernel.packages.linux_6_5;
linuxPackages_6_6 = linuxKernel.packages.linux_6_6;
linuxPackages_6_7 = linuxKernel.packages.linux_6_7;
linuxPackages_6_8 = linuxKernel.packages.linux_6_8;
linuxPackages_6_9 = linuxKernel.packages.linux_6_9;
linuxPackages_6_10 = linuxKernel.packages.linux_6_10;
linuxPackages_6_11 = linuxKernel.packages.linux_6_11;
linuxPackages_rpi0 = linuxKernel.packages.linux_rpi1;
linuxPackages_rpi02w = linuxKernel.packages.linux_rpi3;
linuxPackages_rpi1 = linuxKernel.packages.linux_rpi1;
linuxPackages_rpi2 = linuxKernel.packages.linux_rpi2;
linuxPackages_rpi3 = linuxKernel.packages.linux_rpi3;
linuxPackages_rpi4 = linuxKernel.packages.linux_rpi4;
linuxPackages_rt_5_10 = linuxKernel.packages.linux_rt_5_10;
linuxPackages_rt_5_15 = linuxKernel.packages.linux_rt_5_15;
linuxPackages_rt_5_4 = linuxKernel.packages.linux_rt_5_4;
linuxPackages_rt_6_1 = linuxKernel.packages.linux_rt_6_1;
linux_4_14 = linuxKernel.kernels.linux_4_14;
linux_4_19 = linuxKernel.kernels.linux_4_19;
linux_5_4 = linuxKernel.kernels.linux_5_4;
linux_5_10 = linuxKernel.kernels.linux_5_10;
linux_5_15 = linuxKernel.kernels.linux_5_15;
linux_6_1 = linuxKernel.kernels.linux_6_1;
linux_6_4 = linuxKernel.kernels.linux_6_4;
linux_6_5 = linuxKernel.kernels.linux_6_5;
linux_6_6 = linuxKernel.kernels.linux_6_6;
linux_6_7 = linuxKernel.kernels.linux_6_7;
linux_6_8 = linuxKernel.kernels.linux_6_8;
linux_6_9 = linuxKernel.kernels.linux_6_9;
linux_6_10 = linuxKernel.kernels.linux_6_10;
linux_6_11 = linuxKernel.kernels.linux_6_11;
linux_rpi0 = linuxKernel.kernels.linux_rpi1;
linux_rpi02w = linuxKernel.kernels.linux_rpi3;
linux_rpi1 = linuxKernel.kernels.linux_rpi1;
linux_rpi2 = linuxKernel.kernels.linux_rpi2;
linux_rpi3 = linuxKernel.kernels.linux_rpi3;
linux_rpi4 = linuxKernel.kernels.linux_rpi4;
# Added 2021-04-04
linuxPackages_xen_dom0 = linuxPackages;
linuxPackages_latest_xen_dom0 = linuxPackages_latest;
linuxPackages_xen_dom0_hardened = linuxPackages_hardened;
linuxPackages_latest_xen_dom0_hardened = linuxPackages_latest_hardened;
# Added 2021-08-16
linuxPackages_latest_hardened = throw ''
The attribute `linuxPackages_hardened_latest' was dropped because the hardened patches
frequently lag behind the upstream kernel. In some cases this meant that this attribute
had to refer to an older kernel[1] because the latest hardened kernel was EOL and
the latest supported kernel didn't have patches.
If you want to use a hardened kernel, please check which kernel minors are supported
and use a versioned attribute, e.g. `linuxPackages_5_10_hardened'.
[1] for more context: https://github.com/NixOS/nixpkgs/pull/133587
'';
linux_latest_hardened = linuxPackages_latest_hardened;
# Added 2023-11-18, modified 2024-01-09
linuxPackages_testing_bcachefs = throw "'linuxPackages_testing_bcachefs' has been removed, please use 'linuxPackages_latest', any kernel version at least 6.7, or any other linux kernel with bcachefs support";
linux_testing_bcachefs = throw "'linux_testing_bcachefs' has been removed, please use 'linux_latest', any kernel version at least 6.7, or any other linux kernel with bcachefs support";
linuxstopmotion = stopmotion; # Added 2024-11-01
llvmPackages_git = (callPackages ../development/compilers/llvm { }).git;
lld_9 = throw "lld_9 has been removed from nixpkgs"; # Added 2024-04-08
lldb_9 = throw "lldb_9 has been removed from nixpkgs"; # Added 2024-04-08
llvmPackages_9 = throw "llvmPackages_9 has been removed from nixpkgs"; # Added 2024-04-08
llvm_9 = throw "llvm_9 has been removed from nixpkgs"; # Added 2024-04-08
lobster-two = throw "'lobster-two' has been renamed to/replaced by 'google-fonts'"; # Converted to throw 2024-10-17
lsh = throw "lsh has been removed as it had no maintainer in Nixpkgs and hasn't seen an upstream release in over a decade"; # Added 2024-08-14
luna-icons = throw "luna-icons has been removed as it was removed upstream"; # Added 2024-10-29
lv_img_conv = throw "'lv_img_conv' has been removed from nixpkgs as it is broken"; # Added 2024-06-18
lxd = lib.warn "lxd has been renamed to lxd-lts" lxd-lts; # Added 2024-04-01
lxd-unwrapped = lib.warn "lxd-unwrapped has been renamed to lxd-unwrapped-lts" lxd-unwrapped-lts; # Added 2024-04-01
lzma = throw "'lzma' has been renamed to/replaced by 'xz'"; # Converted to throw 2024-10-17
### M ###
ma1sd = throw "ma1sd was dropped as it is unmaintained"; # Added 2024-07-10
MACS2 = macs2; # Added 2023-06-12
mailctl = throw "mailctl has been renamed to oama"; # Added 2024-08-19
mailman-rss = throw "The mailman-rss package was dropped since it was unmaintained."; # Added 2024-06-21
mariadb_110 = throw "mariadb_110 has been removed from nixpkgs, please switch to another version like mariadb_114"; # Added 2024-08-15
mariadb-client = hiPrio mariadb.client; #added 2019.07.28
maligned = throw "maligned was deprecated upstream in favor of x/tools/go/analysis/passes/fieldalignment"; # Added 20204-08-24
marwaita-manjaro = lib.warn "marwaita-manjaro has been renamed to marwaita-teal" marwaita-teal; # Added 2024-07-08
marwaita-peppermint = lib.warn "marwaita-peppermint has been renamed to marwaita-red" marwaita-red; # Added 2024-07-01
marwaita-ubuntu = lib.warn "marwaita-ubuntu has been renamed to marwaita-orange" marwaita-orange; # Added 2024-07-08
marwaita-pop_os = lib.warn "marwaita-pop_os has been renamed to marwaita-yellow" marwaita-yellow; # Added 2024-10-29
masari = throw "masari has been removed as it was abandoned upstream"; # Added 2024-07-11
mathematica9 = throw "mathematica9 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20
mathematica10 = throw "mathematica10 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20
mathematica11 = throw "mathematica11 has been removed as it was obsolete, broken, and depended on OpenCV 2"; # Added 2024-08-20
matrique = throw "'matrique' has been renamed to/replaced by 'spectral'"; # Converted to throw 2024-10-17
matrix-sliding-sync = throw "matrix-sliding-sync has been removed as matrix-synapse 114.0 and later covers its functionality"; # Added 2024-10-20
maui-nota = libsForQt5.mauiPackages.nota; # added 2022-05-17
maui-shell = throw "maui-shell has been removed from nixpkgs, it was broken"; # Added 2024-07-15
mcomix3 = mcomix; # Added 2022-06-05
mdt = md-tui; # Added 2024-09-03
meme = throw "'meme' has been renamed to/replaced by 'meme-image-generator'"; # Converted to throw 2024-10-17
mhwaveedit = throw "'mkwaveedit' has been removed due to lack of maintenance upstream. Consider using 'audacity' or 'tenacity' instead";
microcodeAmd = microcode-amd; # Added 2024-09-08
microcodeIntel = microcode-intel; # Added 2024-09-08
microsoft_gsl = microsoft-gsl; # Added 2023-05-26
MIDIVisualizer = midivisualizer; # Added 2024-06-12
mikutter = throw "'mikutter' has been removed because the package was broken and had no maintainers"; # Added 2024-10-01
mime-types = mailcap; # Added 2022-01-21
minetest-touch = minetestclient; # Added 2024-08-12
minetestclient_5 = minetestclient; # Added 2023-12-11
minetestserver_5 = minetestserver; # Added 2023-12-11
minizip2 = pkgs.minizip-ng; # Added 2022-12-28
mod_dnssd = throw "'mod_dnssd' has been renamed to/replaced by 'apacheHttpdPackages.mod_dnssd'"; # Converted to throw 2024-10-17
mod_fastcgi = throw "'mod_fastcgi' has been renamed to/replaced by 'apacheHttpdPackages.mod_fastcgi'"; # Converted to throw 2024-10-17
mod_python = throw "'mod_python' has been renamed to/replaced by 'apacheHttpdPackages.mod_python'"; # Converted to throw 2024-10-17
mod_wsgi = throw "'mod_wsgi' has been renamed to/replaced by 'apacheHttpdPackages.mod_wsgi'"; # Converted to throw 2024-10-17
mod_ca = throw "'mod_ca' has been renamed to/replaced by 'apacheHttpdPackages.mod_ca'"; # Converted to throw 2024-10-17
mod_crl = throw "'mod_crl' has been renamed to/replaced by 'apacheHttpdPackages.mod_crl'"; # Converted to throw 2024-10-17
mod_csr = throw "'mod_csr' has been renamed to/replaced by 'apacheHttpdPackages.mod_csr'"; # Converted to throw 2024-10-17
mod_ocsp = throw "'mod_ocsp' has been renamed to/replaced by 'apacheHttpdPackages.mod_ocsp'"; # Converted to throw 2024-10-17
mod_scep = throw "'mod_scep' has been renamed to/replaced by 'apacheHttpdPackages.mod_scep'"; # Converted to throw 2024-10-17
mod_spkac = throw "'mod_spkac' has been renamed to/replaced by 'apacheHttpdPackages.mod_spkac'"; # Converted to throw 2024-10-17
mod_pkcs12 = throw "'mod_pkcs12' has been renamed to/replaced by 'apacheHttpdPackages.mod_pkcs12'"; # Converted to throw 2024-10-17
mod_timestamp = throw "'mod_timestamp' has been renamed to/replaced by 'apacheHttpdPackages.mod_timestamp'"; # Converted to throw 2024-10-17
monero = throw "'monero' has been renamed to/replaced by 'monero-cli'"; # Converted to throw 2024-10-17
mongodb-4_4 = throw "mongodb-4_4 has been removed, it's end of life since April 2024"; # Added 2024-04-11
mongodb-5_0 = throw "mongodb-5_0 has been removed, it's end of life since October 2024"; # Added 2024-10-01
moz-phab = mozphab; # Added 2022-08-09
mp3info = throw "'mp3info' has been removed due to lack of maintenance upstream. Consider using 'eartag' or 'tagger' instead"; # Added 2024-09-14
mpc-cli = mpc; # Added 2024-10-14
mpc_cli = mpc; # Added 2024-10-14
mpd_clientlib = throw "'mpd_clientlib' has been renamed to/replaced by 'libmpdclient'"; # Converted to throw 2024-10-17
mpdevil = plattenalbum; # Added 2024-05-22
mpg321 = throw "'mpg321' has been removed due to it being unmaintained by upstream. Consider using mpg123 instead."; # Added 2024-05-10
msp430NewlibCross = msp430Newlib; # Added 2024-09-06
mupdf_1_17 = throw "'mupdf_1_17' has been removed due to being outdated and insecure. Consider using 'mupdf' instead."; # Added 2024-08-22
mustache-tcl = tclPackages.mustache-tcl; # Added 2024-10-02
mutt-with-sidebar = mutt; # Added 2022-09-17
mysql-client = hiPrio mariadb.client;
mysql = throw "'mysql' has been renamed to/replaced by 'mariadb'"; # Converted to throw 2024-10-17
mesa_drivers = throw "'mesa_drivers' has been removed, use 'pkgs.mesa' or 'pkgs.mesa.drivers' depending on target use case."; # Converted to throw 2024-07-11
### N ###
ncdu_2 = ncdu; # Added 2022-07-22
neocities-cli = neocities; # Added 2024-07-31
netbox_3_3 = throw "netbox 3.3 series has been removed as it was EOL"; # Added 2023-09-02
netbox_3_5 = throw "netbox 3.5 series has been removed as it was EOL"; # Added 2024-01-22
nextcloud27 = throw ''
Nextcloud v27 has been removed from `nixpkgs` as the support for is dropped
by upstream in 2024-06. Please upgrade to at least Nextcloud v28 by declaring
services.nextcloud.package = pkgs.nextcloud28;
in your NixOS config.
WARNING: if you were on Nextcloud 26 you have to upgrade to Nextcloud 27
first on 24.05 because Nextcloud doesn't support upgrades across multiple major versions!
''; # Added 2024-06-25
nextcloud27Packages = throw "Nextcloud27 is EOL!"; # Added 2024-06-25
nagiosPluginsOfficial = monitoring-plugins;
neochat = libsForQt5.kdeGear.neochat; # added 2022-05-10
newlibCross = newlib; # Added 2024-09-06
newlib-nanoCross = newlib-nano; # Added 2024-09-06
nix-direnv-flakes = nix-direnv;
nix-ld-rs = nix-ld; # Added 2024-08-17
nix-repl = throw (
# Added 2018-08-26
"nix-repl has been removed because it's not maintained anymore, " +
"use `nix repl` instead. Also see https://github.com/NixOS/nixpkgs/pull/44903"
);
nix-simple-deploy = throw "'nix-simple-deploy' has been removed as it is broken and unmaintained"; # Added 2024-08-17
nix-universal-prefetch = throw "The nix-universal-prefetch package was dropped since it was unmaintained."; # Added 2024-06-21
nixFlakes = throw "'nixFlakes' has been renamed to/replaced by 'nixVersions.stable'"; # Converted to throw 2024-10-17
nixStable = nixVersions.stable; # Added 2022-01-24
nixUnstable = throw "nixUnstable has been removed. For bleeding edge (Nix master, roughly weekly updated) use nixVersions.git, otherwise use nixVersions.latest."; # Converted to throw 2024-04-22
nix_2_3 = nixVersions.nix_2_3;
nixfmt = lib.warn "nixfmt was renamed to nixfmt-classic. The nixfmt attribute may be used for the new RFC 166-style formatter in the future, which is currently available as nixfmt-rfc-style" nixfmt-classic; # Added 2024-03-31
# When the nixops_unstable alias is removed, nixops_unstable_minimal can be renamed to nixops_unstable.
nixosTest = testers.nixosTest; # Added 2022-05-05
nmap-unfree = throw "'nmap-unfree' has been renamed to/replaced by 'nmap'"; # Converted to throw 2024-10-17
nodejs-18_x = nodejs_18; # Added 2022-11-06
nodejs-slim-18_x = nodejs-slim_18; # Added 2022-11-06
noto-fonts-cjk = throw "'noto-fonts-cjk' has been renamed to/replaced by 'noto-fonts-cjk-sans'"; # Converted to throw 2024-10-17
noto-fonts-emoji = noto-fonts-color-emoji; # Added 2023-09-09
noto-fonts-extra = noto-fonts; # Added 2023-04-08
NSPlist = nsplist; # Added 2024-01-05
nushellFull = lib.warn "`nushellFull` has has been replaced by `nushell` as it's features no longer exist" nushell; # Added 2024-05-30
nvidia-podman = throw "podman should use the Container Device Interface (CDI) instead. See https://web.archive.org/web/20240729183805/https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html#configuring-podman"; # Added 2024-08-02
nvidia-thrust = throw "nvidia-thrust has been removed because the project was deprecated; use cudaPackages.cuda_cccl";
nvtop = lib.warn "nvtop has been renamed to nvtopPackages.full" nvtopPackages.full; # Added 2024-02-25
nvtop-amd = lib.warn "nvtop-amd has been renamed to nvtopPackages.amd" nvtopPackages.amd; # Added 2024-02-25
nvtop-nvidia = lib.warn "nvtop-nvidia has been renamed to nvtopPackages.nvidia" nvtopPackages.nvidia; # Added 2024-02-25
nvtop-intel = lib.warn "nvtop-intel has been renamed to nvtopPackages.intel" nvtopPackages.intel; # Added 2024-02-25
nvtop-msm = lib.warn "nvtop-msm has been renamed to nvtopPackages.msm" nvtopPackages.msm; # Added 2024-02-25
### O ###
o = orbiton; # Added 2023-04-09
oathToolkit = oath-toolkit; # Added 2022-04-04
oauth2_proxy = throw "'oauth2_proxy' has been renamed to/replaced by 'oauth2-proxy'"; # Converted to throw 2024-10-17
oil = lib.warn "Oil has been replaced with the faster native C++ version and renamed to 'oils-for-unix'. See also https://github.com/oils-for-unix/oils/wiki/Oils-Deployments" oils-for-unix; # Added 2024-10-22
onevpl-intel-gpu = lib.warn "onevpl-intel-gpu has been renamed to vpl-gpu-rt" vpl-gpu-rt; # Added 2024-06-04
opencv2 = throw "opencv2 has been removed as it is obsolete and was not used by any other package; please migrate to OpenCV 4"; # Added 2024-08-20
opencv3 = throw "opencv3 has been removed as it is obsolete and was not used by any other package; please migrate to OpenCV 4"; # Added 2024-08-20
openafs_1_8 = openafs; # Added 2022-08-22
opencl-info = throw "opencl-info has been removed, as the upstream is unmaintained; consider using 'clinfo' instead"; # Added 2024-06-12
opencomposite-helper = throw "opencomposite-helper has been removed from nixpkgs as it causes issues with some applications. See https://wiki.nixos.org/wiki/VR#OpenComposite for the recommended setup"; # Added 2024-09-07
openconnect_gnutls = openconnect; # Added 2022-03-29
opendylan = throw "opendylan has been removed from nixpkgs as it was broken"; # Added 2024-07-15
opendylan_bin = throw "opendylan_bin has been removed from nixpkgs as it was broken"; # Added 2024-07-15
openelec-dvb-firmware = throw "'openelec-dvb-firmware' has been renamed to/replaced by 'libreelec-dvb-firmware'"; # Converted to throw 2024-10-17
openethereum = throw "openethereum development has ceased by upstream. Use alternate clients such as go-ethereum, erigon, or nethermind"; # Added 2024-05-13
openimageio2 = openimageio; # Added 2023-01-05
openisns = throw "'openisns' has been renamed to/replaced by 'open-isns'"; # Converted to throw 2024-10-17
openjdk19 = throw "OpenJDK 19 was removed as it has reached its end of life"; # Added 2024-08-01
openjdk19_headless = throw "OpenJDK 19 was removed as it has reached its end of life"; # Added 2024-08-01
jdk19 = throw "OpenJDK 19 was removed as it has reached its end of life"; # Added 2024-08-01
jdk19_headless = throw "OpenJDK 19 was removed as it has reached its end of life"; # Added 2024-08-01
openjdk20 = throw "OpenJDK 20 was removed as it has reached its end of life"; # Added 2024-08-01
openjdk20_headless = throw "OpenJDK 20 was removed as it has reached its end of life"; # Added 2024-08-01
jdk20 = throw "OpenJDK 20 was removed as it has reached its end of life"; # Added 2024-08-01
jdk20_headless = throw "OpenJDK 20 was removed as it has reached its end of life"; # Added 2024-08-01
openjdk22 = throw "OpenJDK 22 was removed as it has reached its end of life"; # Added 2024-09-24
openjdk22_headless = throw "OpenJDK 22 was removed as it has reached its end of life"; # Added 2024-09-24
jdk22 = throw "OpenJDK 22 was removed as it has reached its end of life"; # Added 2024-09-24
jdk22_headless = throw "OpenJDK 22 was removed as it has reached its end of life"; # Added 2024-09-24
openjfx11 = throw "OpenJFX 11 was removed as it has reached its end of life"; # Added 2024-10-07
openjfx19 = throw "OpenJFX 19 was removed as it has reached its end of life"; # Added 2024-08-01
openjfx20 = throw "OpenJFX 20 was removed as it has reached its end of life"; # Added 2024-08-01
openjfx22 = throw "OpenJFX 22 was removed as it has reached its end of life"; # Added 2024-09-24
openjpeg_2 = throw "'openjpeg_2' has been renamed to/replaced by 'openjpeg'"; # Converted to throw 2024-10-17
openlens = throw "Lens Closed its source code, package obsolete/stale - consider lens as replacement"; # Added 2024-09-04
openlp = throw "openlp has been removed for now because the outdated version depended on insecure and removed packages and it needs help to upgrade and maintain it; see https://github.com/NixOS/nixpkgs/pull/314882"; # Added 2024-07-29
openmpt123 = throw "'openmpt123' has been renamed to/replaced by 'libopenmpt'"; # Converted to throw 2024-10-17
openssl_3_0 = openssl_3; # Added 2022-06-27
orchis = throw "'orchis' has been renamed to/replaced by 'orchis-theme'"; # Converted to throw 2024-10-17
onlyoffice-bin = onlyoffice-desktopeditors; # Added 2024-09-20
onlyoffice-bin_latest = onlyoffice-bin; # Added 2024-07-03
onlyoffice-bin_7_2 = throw "onlyoffice-bin_7_2 has been removed. Please use the latest version available under onlyoffice-bin"; # Added 2024-07-03
onlyoffice-bin_7_5 = throw "onlyoffice-bin_7_5 has been removed. Please use the latest version available under onlyoffice-bin"; # Added 2024-07-03
openvswitch-lts = throw "openvswitch-lts has been removed. Please use the latest version available under openvswitch"; # Added 2024-08-24
oraclejdk = throw "All Oracle JDKs and JREs were dropped due to being unmaintained and heavily insecure. OpenJDK provides compatible replacements for JDKs and JREs."; # Added 2024-11-01
oraclejdk8 = throw "All Oracle JDKs and JREs were dropped due to being unmaintained and heavily insecure. OpenJDK provides compatible replacements for JDKs and JREs."; # Added 2024-11-01
oraclejre = throw "All Oracle JDKs and JREs were dropped due to being unmaintained and heavily insecure. OpenJDK provides compatible replacements for JDKs and JREs."; # Added 2024-11-01
oraclejre8 = throw "All Oracle JDKs and JREs were dropped due to being unmaintained and heavily insecure. OpenJDK provides compatible replacements for JDKs and JREs."; # Added 2024-11-01
jrePlugin = throw "All Oracle JDKs and JREs were dropped due to being unmaintained and heavily insecure. OpenJDK provides compatible replacements for JDKs and JREs."; # Added 2024-11-01
jre8Plugin = throw "All Oracle JDKs and JREs were dropped due to being unmaintained and heavily insecure. OpenJDK provides compatible replacements for JDKs and JREs."; # Added 2024-11-01
jdkdistro = throw "All Oracle JDKs and JREs were dropped due to being unmaintained and heavily insecure. OpenJDK provides compatible replacements for JDKs and JREs."; # Added 2024-11-01
oraclejdk8distro = throw "All Oracle JDKs and JREs were dropped due to being unmaintained and heavily insecure. OpenJDK provides compatible replacements for JDKs and JREs."; # Added 2024-11-01
oraclejdk11 = throw "All Oracle JDKs and JREs were dropped due to being unmaintained and heavily insecure. OpenJDK provides compatible replacements for JDKs and JREs."; # Added 2024-11-01
OSCAR = oscar; # Added 2024-06-12
osxfuse = throw "'osxfuse' has been renamed to/replaced by 'macfuse-stubs'"; # Converted to throw 2024-10-17
ovn-lts = throw "ovn-lts has been removed. Please use the latest version available under ovn"; # Added 2024-08-24
oysttyer = throw "oysttyer has been removed; it is no longer maintained because of Twitter disabling free API access"; # Added 2024-09-23
### P ###
PageEdit = pageedit; # Added 2024-01-21
p2pvc = throw "p2pvc has been removed as it is unmaintained upstream and depends on OpenCV 2"; # Added 2024-08-20
packet-cli = throw "'packet-cli' has been renamed to/replaced by 'metal-cli'"; # Converted to throw 2024-10-17
paperoni = throw "paperoni has been removed, because it is unmaintained"; # Added 2024-07-14
paperless = throw "'paperless' has been renamed to/replaced by 'paperless-ngx'"; # Converted to throw 2024-10-17
paperless-ng = paperless-ngx; # Added 2022-04-11
partition-manager = libsForQt5.partitionmanager; # Added 2024-01-08
patchelfStable = patchelf; # Added 2024-01-25
paup = paup-cli; # Added 2024-09-11
pcsctools = pcsc-tools; # Added 2023-12-07
pcsxr = throw "pcsxr was removed as it has been abandoned for over a decade; please use DuckStation, Mednafen, or the RetroArch PCSX ReARMed core"; # Added 2024-08-20
pdf4tcl = tclPackages.pdf4tcl; # Added 2024-10-02
peach = asouldocs; # Added 2022-08-28
percona-server_innovation = lib.warn "Percona upstream has decided to skip all Innovation releases of MySQL and only release LTS versions." percona-server; # Added 2024-10-13
percona-server_lts = percona-server; # Added 2024-10-13
percona-xtrabackup_innovation = lib.warn "Percona upstream has decided to skip all Innovation releases of MySQL and only release LTS versions." percona-xtrabackup; # Added 2024-10-13
percona-xtrabackup_lts = percona-xtrabackup; # Added 2024-10-13
pentablet-driver = xp-pen-g430-driver; # Added 2022-06-23
perldevel = throw "'perldevel' has been dropped due to lack of updates in nixpkgs and lack of consistent support for devel versions by 'perl-cross' releases, use 'perl' instead";
perldevelPackages = perldevel;
petrinizer = throw "'petrinizer' has been removed, as it was broken and unmaintained"; # added 2024-05-09
pgadmin = pgadmin4;
pharo-spur64 = pharo; # Added 2022-08-03
picom-next = picom; # Added 2024-02-13
pict-rs_0_3 = throw "pict-rs_0_3 has been removed, as it was an outdated version and no longer compiled"; # Added 2024-08-20
pipewire_0_2 = throw "pipewire_0_2 has been removed as it is outdated and no longer used"; # Added 2024-07-28
pipewire-media-session = throw "pipewire-media-session is no longer maintained and has been removed. Please use Wireplumber instead.";
playwright = lib.warn "'playwright' will reference playwright-driver in 25.05. Reference 'python3Packages.playwright' for the python test launcher" python3Packages.toPythonApplication python3Packages.playwright; # Added 2024-10-04
pleroma-otp = throw "'pleroma-otp' has been renamed to/replaced by 'pleroma'"; # Converted to throw 2024-10-17
pltScheme = racket; # just to be sure
poretools = throw "poretools has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-06-03
powerdns = pdns; # Added 2022-03-28
# postgresql plugins
cstore_fdw = postgresqlPackages.cstore_fdw;
pg_cron = postgresqlPackages.pg_cron;
pg_hll = postgresqlPackages.pg_hll;
pg_repack = postgresqlPackages.pg_repack;
pg_similarity = postgresqlPackages.pg_similarity;
pg_topn = postgresqlPackages.pg_topn;
pgjwt = postgresqlPackages.pgjwt;
pgroonga = postgresqlPackages.pgroonga;
pgtap = postgresqlPackages.pgtap;
plv8 = postgresqlPackages.plv8;
postgis = postgresqlPackages.postgis;
tex-match = throw "'tex-match' has been removed due to lack of maintenance upstream. Consider using 'hieroglyphic' instead"; # Added 2024-09-24
texinfo5 = throw "'texinfo5' has been removed from nixpkgs"; # Added 2024-09-10
timescaledb = postgresqlPackages.timescaledb;
tsearch_extras = postgresqlPackages.tsearch_extras;
# pinentry was using multiple outputs, this emulates the old interface for i.e. home-manager
# soon: throw "'pinentry' has been removed. Pick an appropriate variant like 'pinentry-curses' or 'pinentry-gnome3'";
pinentry = pinentry-all // {
curses = pinentry-curses;
emacs = pinentry-emacs;
gnome3 = pinentry-gnome3;
gtk2 = pinentry-gtk2;
qt = pinentry-qt;
tty = pinentry-tty;
flavors = [ "curses" "emacs" "gnome3" "gtk2" "qt" "tty" ];
}; # added 2024-01-15
pinentry_qt5 = throw "'pinentry_qt5' has been renamed to/replaced by 'pinentry-qt'"; # Converted to throw 2024-10-17
pivx = throw "pivx has been removed as it was marked as broken"; # Added 2024-07-15
pivxd = throw "pivxd has been removed as it was marked as broken"; # Added 2024-07-15
PlistCpp = plistcpp; # Added 2024-01-05
pocket-updater-utility = pupdate; # Added 2024-01-25
prismlauncher-qt5 = throw "'prismlauncher-qt5' has been removed from nixpkgs. Please use 'prismlauncher'"; # Added 2024-04-20
prismlauncher-qt5-unwrapped = throw "'prismlauncher-qt5-unwrapped' has been removed from nixpkgs. Please use 'prismlauncher-unwrapped'"; # Added 2024-04-20
probe-rs = probe-rs-tools; # Added 2024-05-23
probe-run = throw "probe-run is deprecated upstream. Use probe-rs instead."; # Added 2024-05-23
prometheus-dmarc-exporter = dmarc-metrics-exporter; # added 2022-05-31
prometheus-dovecot-exporter = dovecot_exporter; # Added 2024-06-10
prometheus-openldap-exporter = throw "'prometheus-openldap-exporter' has been removed from nixpkgs, as it was unmaintained"; # Added 2024-09-01
prometheus-minio-exporter = throw "'prometheus-minio-exporter' has been removed from nixpkgs, use Minio's built-in Prometheus integration instead"; # Added 2024-06-10
prometheus-tor-exporter = throw "'prometheus-tor-exporter' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-10-30
protobuf3_24 = protobuf_24;
protobuf3_23 = protobuf_23;
protobuf3_21 = protobuf_21;
protonup = protonup-ng; # Added 2022-11-06
protonvpn-gui_legacy = throw "protonvpn-gui_legacy source code was removed from upstream. Use protonvpn-gui instead."; # Added 2024-10-12
proxmark3-rrg = proxmark3; # Added 2023-07-25
psensor = throw "'psensor' has been removed due to lack of maintenance upstream. Consider using 'mission-center', 'resources' or 'monitorets' instead"; # Added 2024-09-14
pyo3-pack = maturin;
pypi2nix = throw "pypi2nix has been removed due to being unmaintained";
pypolicyd-spf = spf-engine; # Added 2022-10-09
python = python2; # Added 2022-01-11
python-swiftclient = throw "'python-swiftclient' has been renamed to/replaced by 'swiftclient'"; # Converted to throw 2024-10-17
pythonFull = python2Full; # Added 2022-01-11
pythonPackages = python.pkgs; # Added 2022-01-11
### Q ###
qbittorrent-qt5 = throw "'qbittorrent-qt5' has been removed as qBittorrent 5 dropped support for Qt 5. Please use 'qbittorrent'"; # Added 2024-09-30
qcsxcad = throw "'qcsxcad' has been renamed to/replaced by 'libsForQt5.qcsxcad'"; # Converted to throw 2024-10-17
qflipper = qFlipper; # Added 2022-02-11
qscintilla = libsForQt5.qscintilla; # Added 2023-09-20
qscintilla-qt6 = qt6Packages.qscintilla; # Added 2023-09-20
qt515 = qt5; # Added 2022-11-24
qt5ct = throw "'qt5ct' has been renamed to/replaced by 'libsForQt5.qt5ct'"; # Converted to throw 2024-10-17
qt6ct = qt6Packages.qt6ct; # Added 2023-03-07
qtcurve = throw "'qtcurve' has been renamed to/replaced by 'libsForQt5.qtcurve'"; # Converted to throw 2024-10-17
qtile-unwrapped = python3.pkgs.qtile; # Added 2023-05-12
quantum-espresso-mpi = quantum-espresso; # Added 2023-11-23
quicklispPackages = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
quicklispPackagesABCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
quicklispPackagesCCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
quicklispPackagesClisp = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
quicklispPackagesECL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
quicklispPackagesFor = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
quicklispPackagesGCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
quicklispPackagesSBCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
qxw = throw "'qxw' has been removed due to lack of maintenance upstream. Consider using 'crosswords' instead"; # Added 2024-10-19
### R ###
rabbitvcs = throw "rabbitvcs has been removed from nixpkgs, because it was broken"; # Added 2024-07-15
radare2-cutter = throw "'radare2-cutter' has been renamed to/replaced by 'cutter'"; # Converted to throw 2024-10-17
radicle-cli = throw "'radicle-cli' was removed in favor of 'radicle-node'"; # Added 2024-05-04
radicle-upstream = throw "'radicle-upstream' was sunset, see <https://community.radworks.org/t/2962>"; # Added 2024-05-04
railway-travel = diebahn; # Added 2024-04-01
rambox-pro = rambox; # Added 2022-12-12
rapidjson-unstable = lib.warn "'rapidjson-unstable' has been renamed to 'rapidjson'" rapidjson; # Added 2024-07-28
redocly-cli = redocly; # Added 2024-04-14
redpanda = redpanda-client; # Added 2023-10-14
redpanda-server = throw "'redpanda-server' has been removed because it was broken for a long time"; # Added 2024-06-10
relibc = throw "relibc has been removed due to lack of maintenance"; # Added 2024-09-02
replay-sorcery = throw "replay-sorcery has been removed as it is unmaintained upstream. Consider using gpu-screen-recorder or obs-studio instead."; # Added 2024-07-13
restinio_0_6 = throw "restinio_0_6 has been removed from nixpkgs as it's not needed by downstream packages"; # Added 2024-07-04
retroshare06 = retroshare;
rigsofrods = rigsofrods-bin; # Added 2023-03-22
ring-daemon = throw "'ring-daemon' has been renamed to/replaced by 'jami-daemon'"; # Converted to throw 2024-10-17
rockbox_utility = rockbox-utility; # Added 2022-03-17
rpiboot-unstable = throw "'rpiboot-unstable' has been renamed to/replaced by 'rpiboot'"; # Converted to throw 2024-10-17
rr-unstable = rr; # Added 2022-09-17
rtx = mise; # Added 2024-01-05
runCommandNoCC = runCommand;
runCommandNoCCLocal = runCommandLocal;
rustc-wasm32 = rustc; # Added 2023-12-01
rustic-rs = rustic; # Added 2024-08-02
rxvt_unicode = throw "'rxvt_unicode' has been renamed to/replaced by 'rxvt-unicode-unwrapped'"; # Converted to throw 2024-10-17
rxvt_unicode-with-plugins = throw "'rxvt_unicode-with-plugins' has been renamed to/replaced by 'rxvt-unicode'"; # Converted to throw 2024-10-17
# The alias for linuxPackages*.rtlwifi_new is defined in ./all-packages.nix,
# due to it being inside the linuxPackagesFor function.
rtlwifi_new-firmware = throw "'rtlwifi_new-firmware' has been renamed to/replaced by 'rtw88-firmware'"; # Converted to throw 2024-10-17
rtw88-firmware = throw "rtw88-firmware has been removed because linux-firmware now contains it."; # Added 2024-06-28
### S ###
SDL_classic = SDL1; # Added 2024-09-03
s2n = throw "'s2n' has been renamed to/replaced by 's2n-tls'"; # Converted to throw 2024-10-17
sandboxfs = throw "'sandboxfs' has been removed due to being unmaintained, consider using linux namespaces for sandboxing instead"; # Added 2024-06-06
sane-backends-git = throw "'sane-backends-git' has been renamed to/replaced by 'sane-backends'"; # Converted to throw 2024-10-17
scantailor = scantailor-advanced; # Added 2022-05-26
schildichat-web = throw ''
schildichat has been removed as it is severely lacking behind the Element upstream and does not receive regular security fixes.
Please participate in upstream discussion on getting out new releases:
https://github.com/SchildiChat/schildichat-desktop/issues/212
https://github.com/SchildiChat/schildichat-desktop/issues/215''; # Added 2023-12-05
schildichat-desktop = schildichat-web;
schildichat-desktop-wayland = schildichat-web;
scitoken-cpp = scitokens-cpp; # Added 2024-02-12
semeru-bin-16 = throw "Semeru 16 has been removed as it has reached its end of life"; # Added 2024-08-01
semeru-jre-bin-16 = throw "Semeru 16 has been removed as it has reached its end of life"; # Added 2024-08-01
sensu = throw "sensu has been removed as the upstream project is deprecated. Consider using `sensu-go`"; # Added 2024-10-28
session-desktop-appimage = session-desktop;
sequoia = sequoia-sq; # Added 2023-06-26
sexp = sexpp; # Added 2023-07-03
inherit (libsForQt5.mauiPackages) shelf; # added 2022-05-17
shipyard = jumppad; # Added 2023-06-06
shout = nodePackages.shout; # Added unknown; moved 2024-10-19
sky = throw "'sky' has been removed because its upstream website disappeared"; # Added 2024-07-21
SkypeExport = skypeexport; # Added 2024-06-12
slack-dark = throw "'slack-dark' has been renamed to/replaced by 'slack'"; # Converted to throw 2024-10-17
slurm-llnl = slurm; # renamed July 2017
snapTools = throw "snapTools was removed because makeSnap produced broken snaps and it was the only function in snapTools. See https://github.com/NixOS/nixpkgs/issues/100618 for more details."; # 2024-03-04;
soldat-unstable = opensoldat; # Added 2022-07-02
soundOfSorting = sound-of-sorting; # Added 2023-07-07
SP800-90B_EntropyAssessment = sp800-90b-entropyassessment; # Added on 2024-06-12
SPAdes = spades; # Added 2024-06-12
spark2014 = gnatprove; # Added 2024-02-25
# Added 2020-02-10
sourceHanSansPackages = {
japanese = source-han-sans;
korean = source-han-sans;
simplified-chinese = source-han-sans;
traditional-chinese = source-han-sans;
};
source-han-sans-japanese = source-han-sans;
source-han-sans-korean = source-han-sans;
source-han-sans-simplified-chinese = source-han-sans;
source-han-sans-traditional-chinese = source-han-sans;
sourceHanSerifPackages = {
japanese = source-han-serif;
korean = source-han-serif;
simplified-chinese = source-han-serif;
traditional-chinese = source-han-serif;
};
source-han-serif-japanese = source-han-serif;
source-han-serif-korean = source-han-serif;
source-han-serif-simplified-chinese = source-han-serif;
source-han-serif-traditional-chinese = source-han-serif;
spectral = throw "'spectral' has been renamed to/replaced by 'neochat'"; # Converted to throw 2024-10-17
# spidermonkey is not ABI upwards-compatible, so only allow this for nix-shell
spidermonkey = throw "'spidermonkey' has been renamed to/replaced by 'spidermonkey_78'"; # Converted to throw 2024-10-17
spidermonkey_102 = throw "'spidermonkey_102' is EOL since 2023/03"; # Added 2024-08-07
spotify-unwrapped = spotify; # added 2022-11-06
spring-boot = throw "'spring-boot' has been renamed to/replaced by 'spring-boot-cli'"; # Converted to throw 2024-10-17
sqldeveloper = throw "sqldeveloper was dropped due to being severely out-of-date and having a dependency on JavaFX for Java 8, which we do not support"; # Added 2024-11-02
srvc = throw "'srvc' has been removed, as it was broken and unmaintained"; # Added 2024-09-09
ssm-agent = amazon-ssm-agent; # Added 2023-10-17
starspace = throw "starspace has been removed from nixpkgs, as it was broken"; # Added 2024-07-15
steamPackages = {
steamArch = throw "`steamPackages.steamArch` has been removed as it's no longer applicable";
steam = lib.warn "`steamPackages.steam` has been moved to top level as `steam-unwrapped`" steam-unwrapped;
steam-fhsenv = lib.warn "`steamPackages.steam-fhsenv` has been moved to top level as `steam`" steam;
steam-fhsenv-small = lib.warn "`steamPackages.steam-fhsenv-small` has been moved to top level as `steam`; there is no longer a -small variant" steam;
steam-fhsenv-without-steam = lib.warn "`steamPackages.steam-fhsenv-without-steam` has been moved to top level as `steam-fhsenv-without-steam`" steam-fhsenv-without-steam;
steam-runtime = throw "`steamPackages.steam-runtime` has been removed, as it's no longer supported or necessary";
steam-runtime-wrapped = throw "`steamPackages.steam-runtime-wrapped` has been removed, as it's no longer supported or necessary";
steamcmd = lib.warn "`steamPackages.steamcmd` has been moved to top level as `steamcmd`" steamcmd;
};
steam-small = steam; # Added 2024-09-12
steam-run-native = steam-run; # added 2022-02-21
StormLib = stormlib; # Added 2024-01-21
sumneko-lua-language-server = lua-language-server; # Added 2023-02-07
swiProlog = lib.warn "swiProlog has been renamed to swi-prolog" swi-prolog; # Added 2024-09-07
swiPrologWithGui = lib.warn "swiPrologWithGui has been renamed to swi-prolog-gui" swi-prolog-gui; # Added 2024-09-07
swig1 = throw "swig1 has been removed as it is obsolete"; # Added 2024-08-23
swig2 = throw "swig2 has been removed as it is obsolete"; # Added 2024-08-23
swig4 = swig; # Added 2024-09-12
swigWithJava = throw "swigWithJava has been removed as the main swig package has supported Java since 2009"; # Added 2024-09-12
swtpm-tpm2 = throw "'swtpm-tpm2' has been renamed to/replaced by 'swtpm'"; # Converted to throw 2024-10-17
Sylk = sylk; # Added 2024-06-12
symbiyosys = sby; # Added 2024-08-18
sync = taler-sync; # Added 2024-09-04
syncthing-cli = throw "'syncthing-cli' has been renamed to/replaced by 'syncthing'"; # Converted to throw 2024-10-17
syncthingtray-qt6 = syncthingtray; # Added 2024-03-06
### T ###
tabula = throw "tabula has been removed from nixpkgs, as it was broken"; # Added 2024-07-15
tailor = throw "'tailor' has been removed from nixpkgs, as it was unmaintained upstream."; # Added 2024-11-02
tangogps = throw "'tangogps' has been renamed to/replaced by 'foxtrotgps'"; # Converted to throw 2024-10-17
taskwarrior = lib.warn "taskwarrior was replaced by taskwarrior3, which requires manual transition from taskwarrior 2.6, read upstream's docs: https://taskwarrior.org/docs/upgrade-3/" taskwarrior2;
taplo-cli = taplo; # Added 2022-07-30
taplo-lsp = taplo; # Added 2022-07-30
taro = taproot-assets; # Added 2023-07-04
tcl-fcgi = tclPackages.tcl-fcgi; # Added 2024-10-02
tclcurl = tclPackages.tclcurl; # Added 2024-10-02
tcllib = tclPackages.tcllib; # Added 2024-10-02
tclmagick = tclPackages.tclmagick; # Added 2024-10-02
tcltls = tclPackages.tcltls; # Added 2024-10-02
tcludp = tclPackages.tcludp; # Added 2024-10-02
tclvfs = tclPackages.tclvfs; # Added 2024-10-02
tclx = tclPackages.tclx; # Added 2024-10-02
tdesktop = telegram-desktop; # Added 2023-04-07
tdom = tclPackages.tdom; # Added 2024-10-02
Squashed 'third_party/nixpkgs/' changes from 76612b17c0ce..dc460ec76cbf dc460ec76cbf Remove obsolete libXrandr inputs from programs using winit (#354847) f1b26f503aac nitrokey-udev-rules: init at 1.0.0 (#352481) a4761c00db07 smartcat: 1.7.1 -> 2.1.0 (#354016) 60533322e317 protonvpn-gui: 4.6.0 -> 4.7.3 (#354170) ab599469897c yosys: 0.46 -> 0.47 (#354226) 736b36d5719f niri: 0.1.9 -> 0.1.10 (#355047) 547ac36fb30e spotify-player: 0.20.0 -> 0.20.1 (#354593) 6c3d0282c839 netbird: 0.30.2 -> 0.31.0 (#354756) fcfcc8e0f43d proton-ge-bin: GE-Proton9-18 -> GE-Proton9-20 (#354849) 2e3b9c403874 miriway: 24.09 -> 24.10.1 (#353939) c598a008a26b gfn-electron: init at 2.1.2 (#353887) fcf7e79c02e9 python312Packages.anthropic: 0.35.0 -> 0.39.0 (#354808) 9e9dc89f01d1 python312Packages.githubkit: 0.11.11 -> 0.11.14 (#354763) 3d7216f0da32 nzportable: init at 2.0.0-indev+20241012190425 (#312424) 1d4a687f62fc python312Packages.scikit-rf: 1.3.0 -> 1.4.1 (#354453) 566bf556282a typos: 1.26.0 -> 1.27.3 (#354980) 9a7641474d1c python312Packages.google-generativeai: 0.8.2 -> 0.8.3 (#354919) 76e387b03039 python312Packages.{localstack-ext,localstack}: fix build and refactor (#354962) d056782c98a1 python3Packages.globus-sdk: fix test (#354988) 1ce8fcbc506b hyprlandPlugins: update plugins (#355037) 43c84259fd1b python312Packages.tensorflow-probability: 0.24.0 -> 0.25.0 (#355007) 8c79491aea4c obsidian: remove white background from icons (#354945) b3057fce636d niri: add patch for scrolling without mouse config 97ca8ccb1551 nixos/roundcube: add example for `database.passwordFile` (#348166) f0b14e4fb4be niri: install dinit service files 172f0cee3628 python312Packages.wordcloud: 1.9.3 -> 1.9.4 (#355027) cf81310c69b9 prettypst: unstable-2023-12-06 -> unstable-2024-10-20 (#354972) 4d9d042055b6 cvise: 2.10.0 -> 2.11.0 (#354970) 7514add1990f python312Packages.google-ai-generativelanguage: 0.6.10 -> 0.6.12 (#354917) 66eab41e34dd python312Packages.tencentcloud-sdk-python: 3.0.1262 -> 3.0.1263 (#354909) 2ec42a007584 python312Packages.pyswitchbot: add pytest-asyncio (#354911) fa1b67747b3b ggshield: 1.32.2 -> 1.33.0 (#354912) 918a840f93bf python312Packages.reolink-aio: 0.10.4 -> 0.11.0b1 (#354910) f5c93dd4908f python312Packages.google-cloud-bigquery-logging: 1.4.5 -> 1.5.0 (#354918) 9e48e1749f0a python312Packages.soco: 0.30.5 -> 0.30.6 (#354943) 12569c191eb1 completely: 0.5.2 -> 0.6.3, move to by-name (#354974) 2049461e5435 python3Packages.protobuf4: disable tests that fail on 32bit (#354992) 3f42f0b61e6c linux-firmware: 20241017 -> 20241110 (#355130) 4c3539c70b79 linux-firmware: 20241017 -> 20241110 7ff8d0f160be vaultwarden: 1.32.3 -> 1.32.4 (#355129) 7d4246729b44 vaultwarden: 1.32.3 -> 1.32.4 e635cf8d9fb5 netsurf.browser: fix darwin builds (#355038) 8feb5e84c9e9 libskk: fix parse error (#355005) b71ccf87b23c gnuplot: fix build with `withTeXLive = true` (#352768) 96e1c83061ff pyamlboot.tests: fix the eval (#352825) 87e380382121 nix-unit: 2.24.0 -> 2.24.1 (#355104) f257cb5e5ee1 kubectl-graph: init at 0.7.0, add maintainer rksm (#348297) b3dc0d06fdad buck2: Add shell completions (#354758) 9d2100929da8 rapidfuzz-cpp: 3.0.5 -> 3.1.1 (#351052) 3f334c14975e scopehal-apps: darwin support (#354815) f03a58a929b4 roboto-flex: init at 3.200 (#353851) 5c1e2db52711 libnvme: 1.10 -> 1.11 (#352703) f94a3e0cd12e nix-unit: 2.24.0 -> 2.24.1 628110078b5c libdatachannel: 0.21.2 -> 0.22.2 (#350821) db0b0737bfdc obs-studio-plugins.obs-hyperion: patch stateChanged deprecation (#349326) b3c4badad7e2 roboto-flex: init at 3.200 5812399690b8 gcsfuse: 2.4.0 -> 2.5.1 (#351360) 771d3917283d azure-storage-azcopy: 10.26.0 -> 10.27.0 (#352775) a8489059c4eb signal-desktop: remove stdenv.cc.cc from runtimeDeps (#354924) f475d7505046 python3Packages.pywebview: build fix for tests (#353833) 5b27ef3c5495 pantheon.elementary-onboarding: 8.0.1 -> 8.0.2 (#354896) a0c28de3e7d7 phonemizer: fix build (#354946) 802cb21f2a2a python3Packages.us: switch to pyproject (#354950) 99ad7da9e313 nixosTests.frr: fix node.router.config warning (#354710) a44589e11da3 python312Packages.phonopy: 2.28.0 -> 2.29.1, fix build (#354523) cb9613de4c67 python312Packages.tskit: relax numpy build-time constraint, unbreak (#354512) bc1a933e128d evcc: 0.131.4 -> 0.131.5 (#355083) 20ee59317101 nixos/frigate: Set SyslogIdentifier for better log entries (#355088) 503b5b4c8cba rime-zhwiki: init at 20240909 (#354931) dac96aac49af nixos/frigate: Set SyslogIdentifier for better log entries 871087c18d34 nixos/acme: do not limit credentials functionality to DNS/S3 config (#348344) 8c164faef4d4 nixos/nextcloud-notify_push: fix defaultText rendering (#352479) 8209b0d9b9b0 netclient: 0.25.0 -> 0.26.0 (#354525) 96115f656695 python312Packages.pytest-flake8: 1.2.2 -> 1.3.0 (#354743) 6b5935539883 texlivePackages.xetex: force XeTeX to use fontconfig on Darwin (#354963) 32e064f48c2b evcc: 0.131.4 -> 0.131.5 1593115346ba piano-rs: init at 0.2.0 (#336405) a67e90c4928a wibo: 0.4.2 -> 0.6.14 (#291723) 5b74eb9b909e scopehal-apps: darwin support 71734a22978f pypy3Packages.home-assistant-chip-clusters: fix the eval (#355051) ab58dcfaf4c5 maintainers/README: add guidelines for committers (#351744) 95855a90f9d0 aquamarine: 0.4.3 -> 0.4.4 (#355030) 34ed0c9cc1bb scarab: Apply scaling factor in Wayland (#348427) ae725bafb39b python312Packages.debugpy: 1.8.7 -> 1.8.8 (#354925) eba346ebfead teamspeak3: modernise (#354161) 673033d742b2 yubioath-flutter: 7.1.0 -> 7.1.1 (#352448) 8f0c9853d549 pypy3Packages.home-assistant-chip-clusters: fix the eval e80622178221 niri: 0.1.9 -> 0.1.10 8aed22ecd71e quarto: 1.6.30 -> 1.6.33 and apply patch (#354672) 0198cfb7673a hyprlandPlugins.hyprsplit: 0.44.1 -> 0.45.0 f3f9fcf93c8d hyprlandPlugins.hyprspace: 0-unstable-2024-09-16 -> 0-unstable-2024-11-02 cbc60c36101f hyprlandPlugins.hyprscroller: 0-unstable-2024-10-10 -> 0-unstable-2024-11-09 d9e2143b3e56 hyprlandPlugins.hyprgrass: 0.8.2 -> 0.8.2-unstable-2024-10-30 9739ac3afe95 hyprlandPlugins.hyprfocus: 0-unstable-2024-05-30 -> 0-unstable-2024-10-09 7804dcce6c5b hyprlandPlugins.hypr-dynamic-cursors: 0-unstable-2024-10-10 -> 0-unstable-2024-11-10 7c6c04825999 hyprlandPlugins/hyprland-plugins: 0.44.0 -> 0.45.0 e2b798c525ac hyprlandPlugins.hy3: 0.44.0 -> 0.45.0 e575fc8ffa4b hyprland: 44.1 -> 45.0 (#354900) 62d3c4fb592b netsurf.browser: fix darwin builds 0ef26b5dd615 Merge: Linux Hardened Kernel Updates for 2024-11-10 (#355023) a6f2dfc2572d pylyzer: 0.0.69 -> 0.0.70 (#354954) 91333a0e6dcd team-list: establish java team (#352938) 6b0d4d7f4e8e aquamarine: 0.4.3 -> 0.4.4 3024a6807634 python3Packages.subliminal: mark as not broken (#353672) fa1ebbeeff0a python312Packages.wordcloud: 1.9.3 -> 1.9.4 4fee2cde561f brave: 1.71.121 -> 1.71.123; refactor and nixfmt-rfc-style (#354114) 44bbe5ddad08 nixos/{boinc,guix}: Use exec to start the payload binary of the service (#297526) 9bd781e73301 linux/hardened/patches/6.6: v6.6.59-hardened1 -> v6.6.60-hardened1 3b3ea3ac4b03 linux/hardened/patches/6.11: v6.11.6-hardened1 -> v6.11.7-hardened1 d9b6a745b265 linux/hardened/patches/6.1: v6.1.115-hardened1 -> v6.1.116-hardened1 c367b19a22b7 linux/hardened/patches/5.4: v5.4.284-hardened1 -> v5.4.285-hardened1 fc9089929ad5 linux/hardened/patches/5.15: v5.15.170-hardened1 -> v5.15.171-hardened1 edb9a963e6ea linux/hardened/patches/5.10: v5.10.228-hardened1 -> v5.10.229-hardened1 8db0ec767e6d home-assistant-custom-components.better_thermostat: 1.6.0 -> 1.6.1 (#355021) 2544da75c5bf home-assistant-custom-lovelace-modules.dirigera_platform: init at 2.6.4 (#350542) 799b1af3b445 cfn-nag: fix gemfile so that binaries are generated (#353735) 8339db676638 home-assistant-custom-components.better_thermostat: 1.6.0 -> 1.6.1 9e1f7a1fc712 libvirt: 10.5.0 -> 10.9.0 (#353684) 6977c6b6c48e piano-rs: init at 0.2.0 e4c62c1fc494 pylyzer: 0.0.69 -> 0.0.70 fd214590b6ac rime-zhwiki: init at 20240909 f5f87e7240f5 dashy-ui: init at 3.1.1-unstable-2024-07-14 (#349149) 08e65e669ae3 python312Packages.tensorflow-probability: 0.24.0 -> 0.25.0 608a4a6e7042 libsForQt5.accounts-qml-module,lomiri.*: Enable qdoc docs (#352601) f4a76ebd1330 waylock: 1.2.1 -> 1.3.0 (#354685) 6eafb43ca667 python312Packages.androidtv: 0.0.74 -> 0.0.75 (#354948) 926dbc8e1c6a jasp-desktop: add patch to fix crash when using qt 6.8 (#352505) 60190159408f gfn-electron: init at 2.1.2 9a333460f50c Merge: postgresql: improve passthru.tests (#352966) 0598c612417e python312Packages.bsdiff4: 1.2.4 -> 1.2.5 (#352452) d40ed47baac0 python312Packages.pyftgl: fix build on darwin; fix source; refactor and modenize (#354973) d77a2129f3e2 zed-editor: make node-based built-in LSPs work on NixOS (#354063) 4e73fc3d5304 release: block on `aarch64` on `*-darwin` channels (#262038) 37c3c1a32edf python312Packages.morecantile: 5.4.2 -> 6.0.0 (#349069) 43544b405735 containerlab: 0.58.0 -> 0.59.0 (#353113) 3e9874330416 regripper: update-2023-07-23 -> 0-unstable-2024-11-02 (#353377) 88b78b3d1881 gtree: 1.10.11 -> 1.10.12 (#354521) 83d30478782d python312Packages.kornia: 0.7.3 -> 0.7.4 (#354350) 93472981d1ff nest-cli: 10.4.5 -> 10.4.7 (#354452) 886b26bad3d5 vassal: 3.7.14 -> 3.7.15 (#354462) b1d782c6fbb9 kube-state-metrics: 2.13.0 -> 2.14.0 (#354503) 3e3d0f2c68cf openlibm: 0.8.3 -> 0.8.4 (#354964) 38ed0b172a2e compose2nix: 0.2.3 -> 0.3.1 (#354858) c8af02ff2edb kine: 0.13.2 -> 0.13.3 (#354916) 3a92760aa3f9 stardust-xr-kiara: 0-unstable-2024-07-07 -> 0-unstable-2024-07-13 (#354775) b6077e3f6067 python312Packages.dinghy: 1.3.2 -> 1.3.3 (#354801) 84db55f55e00 erg: 0.6.45 -> 0.6.47 (#354818) d932f3609c38 python312Packages.xml2rfc: 3.23.2 -> 3.24.0 (#354827) cb0631fce111 dotenvx: 1.14.2 -> 1.22.0 (#354838) 1c7bb9a36ff7 jan: 0.5.6 -> 0.5.7 (#354845) 9dcf68f72882 pik: 0.9.0 -> 0.10.0 (#354901) 85a894514e94 dbmate: 2.21.0 -> 2.22.0 (#354985) 77c379fc15b1 maintainers/README: add guidelines for committers aebe24954483 ox: 0.6.7 -> 0.6.10 (#354280) 2b05865a6fa6 glfw3: added vulkan support (#354761) 72d2fc0fe01c python312Packages.polars: 1.7.1 -> 1.12.0 (#354656) 57fa23936966 python3Packages.globus-sdk: fix test 4b239e8fff18 python3Packages.globus-sdk: add bot-wxt1221 as maintainers 2b76729d1341 python312Packages.aiogram: 3.13.1 → 3.14.0 (#354881) 3bfe9c23d14e clickhouse-backup: 2.6.2 -> 2.6.3 (#354882) 67e295df4455 python312Packages.chess: 1.11.0 -> 1.11.1 (#354892) 123c88831bff komga: 1.14.0 -> 1.14.1 (#354826) 57fb3a800a9a xml2rfc: 3.23.2 -> 3.24.0 (#354829) c9ba25afb896 go-mockery: 2.46.0 -> 2.46.3 (#354844) 9d40f67872f2 octoprint: 1.10.2 -> 1.10.3 (#354848) 1d2941554a10 dbmate: 2.21.0 -> 2.22.0 45f61aa9a947 python312Packages.stravalib: 2.0 → 2.1 (#354851) e01ca8d232a0 wit-bindgen: 0.33.0 -> 0.34.0 (#354853) 090349a58995 nwg-drawer: 0.5.0 -> 0.5.2 (#354856) a7fcea08bca8 miriway: 24.09 -> 24.10.1 8025d6d17bcd typos: 1.26.0 -> 1.27.3 da9757048d7d buck2: Use stdenvNoCC 982ff0b08e25 buck2: Install completions for bash and zsh 8213a8a557f8 surreal-engine: init at 0-unstable-2024-11-08 (#337069) 6d4ddefd7161 positron-bin: fix darwin not unpacking the dmg (#354846) 494908f0fe86 python312Packages.localstack: fix build and refactor 54394a0c0b71 python312Packages.localstack-ext: fix build and refactor 5b916fd89714 nixos/openvpn3: add `/etc/openvpn3/configs` to `systemd.tmpfiles` (#353832) 822590d06248 python3Packages.protobuf4: disable tests that fail on 32bit e9c53bdf9a56 nixos/localsend: add package option & allow udp port (#333485) da404cffefb6 vgmtrans: init at 1.2, libbassmidi: init at 2.4.15.3 (#321129) 551bd11c42de python312Packages.pyftgl: refactor and modenize beceecb51336 python312Packages.pyftgl: fix source 8618fe6f96b9 python312Packages.pyftgl: fix build on darwin 9828bad63a49 completely: 0.5.2 -> 0.6.3 8f8f60bee8e5 cvise: 2.10.0 -> 2.11.0 66c47da4338c prettypst: unstable-2023-12-06 -> unstable-2024-10-20 88b620a72b65 completely: move to by-name 00cd61f517aa cartridges: 2.9.3 -> 2.10.1 (#354306) 6cd1dd3dc5e6 vscode-extensions.esbenp.prettier-vscode: 10.4.0 -> 11.0.0 (#335742) f7911fc460e9 vscode-extensions.continue.continue: 0.8.44 -> 0.8.54 (#342514) f69f13279107 vscode-extensions.sainnhe.gruvbox-material: init at 6.5.2 (#350464) e065e550b153 python3Packages.us: add bot-wxt1221 as maintainers ef21cc74e2f1 python3Packages.us: switch to pyproject 925510d32cab vscode-extensions.streetsidesoftware.code-spell-checker: 4.0.14 -> 4.0.15 (#353989) dbb60b6319f3 vscode-extensions.shd101wyy.markdown-preview-enhanced: 0.8.14 -> 0.8.15 (#354447) f696e0dc331c crates-tui: init at 0.1.20 (#354307) 46bbcb7efef5 vgmtrans: init at 1.2 07ca74e13487 teamviewer: add services.teamviewer.package Option + misc improvemens (#346365) fc94ad90fb0e phonemizer: add bot-wxt1221 as maintainers 42be8c49fb89 phonemizer: fix build 1531e7712628 typos-lsp: 0.1.27 -> 0.1.30 (#354872) e19b3c8cd386 python312Packages.netifaces2: init at 0.0.22 (#354736) fc1d56201e17 openlibm: 0.8.3 -> 0.8.4 b306e97ffe30 Libreoffice updates (#354456) 62fa59a63947 doc: revise Darwin SDK documentation (#353439) 29ba5b9a2985 xcodes: 1.5.0 -> 1.6.0, move to `by name`, `with lib;` cleanup, RFC format (#354932) eee079f7e129 xcodes: nix-rfc-format b45f61402b8a xcodes: with lib; cleanup 7531c8e01dc8 xcodes: 1.5.0 -> 1.6.0 3912015f1d0d python312Packages.androidtv: 0.0.74 -> 0.0.75 d420f2c9502f maintainers: add llakala (#354625) 757189b3e6b0 vscode-extensions.ms-windows-ai-studio.windows-ai-studio: init at 0.6.1 (#354817) 214d9423dca6 python312Packages.langgraph: Use correct test directory (#354345) 647624dca6a1 wine-discord-ipc-bridge: unstable-2023-08-09 -> 0.0.3 (#353900) 4c78072d2f27 python312Packages.guidata: 3.6.3 -> 3.7.1 (#354168) 3efeb317473e git-warp-time: init at 0.8.4 (#354046) 35305f29a7e3 xar: fix Linux build on staging-next (#352507) 01ddc69668f5 obsidian: remove white background from icons 903f42960df7 fishPlugins.*: fix versions (#354729) b0b3a70891e6 buildFHSEnv: use LOCALE_ARCHIVE from environment if present (#354899) c188d417cf07 python312Packages.soco: 0.30.5 -> 0.30.6 d3cba66b117d python312Packages.millheater: 0.11.8 -> 0.12.0 (#354797) 4af121e6ac0f ov: 0.36.0 -> 0.37.0 (#354807) 96e67743abd9 ox: switch to the new darwin sdk pattern 992c80c02e1f ox: 0.6.7 -> 0.6.10 757df4a1b42e xcodes: move to by-name ae21c33fafab python312Packages.debugpy: 1.8.7 -> 1.8.8 1bd58487d015 python312Packages.scikit-rf: 1.3.0 -> 1.4.1 343b0a222530 adolc: modernize; fix clang build (#354642) 27235e1e6da6 python312Packages.google-generativeai: 0.8.2 -> 0.8.3 1e6362fe068f python312Packages.google-ai-generativelanguage: 0.6.10 -> 0.6.12 9d3096074f3e vale: 3.8.0 -> 3.9.0 (#354444) 9e960c976873 python312Packages.google-cloud-bigquery-logging: 1.4.5 -> 1.5.0 16107665062c dolphin-emu-primehack: 1.0.6a -> 1.0.7a, qt5 -> qt6, unpin fmt (#350053) b3765ba04029 d2: 0.6.7 -> 0.6.8 (#354459) 012a679db0f8 python312Packages.stripe: 11.1.0 -> 11.2.0 (#354852) 6ffb12c9f9c3 kine: 0.13.2 -> 0.13.3 27a103786c88 doc/hooks/aws-c-common: init (#351394) 660022ee302b newlib: enable parallel build (#354520) acf406372cf8 linux_xanmod, linux_xanmod_latest: 2024-11-08 (#354617) ab244d13144a python312Packages.aiogram: update disabled bb00b359cce7 ggshield: 1.32.2 -> 1.33.0 b39ea623743c python312Packages.tencentcloud-sdk-python: 3.0.1262 -> 3.0.1263 4c4420b29b66 python312Packages.pyswitchbot: add pytest-asyncio b1d0a1aafff5 python312Packages.reolink-aio: 0.10.4 -> 0.11.0b1 465eab85d222 python312Packages.playwrightcapture: 1.26.3 -> 1.27.0, python312Packages.lacuscore: 1.11.3 -> 1.12.0 (#353963) 85c8b5ba7879 esphome: 2024.10.2 -> 2024.10.3 (#354880) c00d32f28515 beszel: init at 0.6.2 (#345444) 652fd5119056 pik: 0.9.0 -> 0.10.0 a59e625bb474 buildFHSEnv: use LOCALE_ARCHIVE from environment if present f8a4abdc2ed1 python312Packages.pytest-flake8: 1.2.2 -> 1.3.0 e20360e289da leo-editor: 6.8.1 -> 6.8.2 (#354519) eacbe35bf009 python312Packages.babelfont: 3.0.5 -> 3.0.6 (#354574) 72a790c6fc77 prusa-slicer, super-slicer, mediathekview: remove Moredread as mainta… (#354794) de131566b6e4 gh-dash: 4.7.0 -> 4.7.1 (#354813) 12fe26865622 python312Packages.magic-wormhole-transit-relay: 0.3.1 -> 0.4.0 (#354726) 176eb0a3d99e doc/hooks/aws-c-common: init 8df19efae58d kubelogin-oidc: 1.30.1 -> 1.31.0 (#353577) f0000fe56d08 lib/minver: bump to 2.3.17 (#354586) 09efcc6e4be9 libvirt-glib: relax max stack size limit f91d2228a0b7 pantheon.elementary-onboarding: 8.0.1 -> 8.0.2 74d1b07edbf2 htcondor: 23.10.1 -> 24.1.1 (#353342) 28f456e3131c GNOME updates 2024-11-05 (#353824) 59ed3fa2c48d scarab: Apply scaling factor in Wayland 0a0d12f6626d gtree: 1.10.11 -> 1.10.12 1a4eb8b7a96e libnvme: 1.10 -> 1.11 35110b71bd78 azure-storage-azcopy: 10.26.0 -> 10.27.0 464b1e80245f maintainers: add llakala d1444b4947b4 python312Packages.chess: 1.11.0 -> 1.11.1 08c2eb8e894e nest-cli: 10.4.5 -> 10.4.7 061f86ca2988 vassal: 3.7.14 -> 3.7.15 ca3eca77cd85 gcsfuse: mark as broken on darwin 64b28c617d26 gcsfuse: 2.4.0 -> 2.5.1 2ff82ba8deea libdatachannel: 0.21.2 -> 0.22.2 8ff9d62e81f6 yubioath-flutter: 7.1.0 -> 7.1.1 b49da1f76456 scarab: Remove unused inputs df10ec72acee mysql-shell: add libutil on darwin; refactor to new SDK pattern (#354735) b9c73c537391 python311Packages.tsfresh: fix build on darwin (#354667) ae7f0eebdb3b python311Packages.qutip: relax numpy build-time constraint, unbreak (#354592) 6e82927b9473 python312Packages.phonopy: 2.28.0 -> 2.29.1, fix build dde8f5051682 bsc: remove axv2 when building on non x86 system (#354473) 55242bf389de hyprland: 44.1 -> 45.0 97a1ad0df003 tulip: fix build (#354236) b322800344d5 python312Packages.rapidfuzz: 3.10.0 -> 3.10.1 ff18a1b2578d rapidfuzz-cpp: 3.0.5 -> 3.1.1 0dc5bb1584a5 mesonlsp: 4.3.5 -> 4.3.7 (#345407) 7135b364b6e3 brave: 1.71.121 -> 1.71.123 301751f1c1bb brave: format with nixfmt-rfc-style d037904ba3ed brave: refactor package.nix to allow more architectures e3d50903923e hickory-dns: 0.25.0-alpha.2 -> 0.25.0-alpha.3 (#354793) b83eab78d7ec libvirt: increase timeout on darwin b5aaa1df2248 python312Packages.redis-om: 0.3.2 -> 0.3.3 (#354393) a96052fe5ffb virt-manager: disable testCLI0263virt_xml df6ffb01522b perlPackages.SysVirt: 10.2.0 -> 10.9.0 e6f77dadc335 python312Packages.libvirt: 10.5.0 -> 10.9.0 69119368fdc5 libvirt: 10.5.0 -> 10.9.0 ed887863a6d6 clickhouse-backup: 2.6.2 -> 2.6.3 06486aa31e8c python312Packages.aiogram: 3.13.1 → 3.14.0 7f76ced7336f nixos/dashy: init module 60bc80aa5cd7 dashy-ui: 3.1.1-unstable-2024-07-14 ec1f3c7390de wttrbar: 0.10.6 -> 0.11.0 (#354778) 372f9fa1b449 esphome: 2024.10.2 -> 2024.10.3 1546e0871c1d nomad_1_9: 1.9.0 -> 1.9.2 (#354300) 3cebba8819f4 spotify-player: 0.20.0 -> 0.20.1 3a83ddd0062b vimPlugins.neoconf-nvim: add dependencies (#354673) e6ffd9960ec9 python3Packages.{mirakuru,pgsanity}: fix builds (#354774) 8bee32d8bfa3 maintainers: add caperren 06be8564e527 immich: 1.119.1 -> 1.120.1 (#354083) 6648da3db4c4 darwin.openwith: remove apple_sdk.frameworks (#354766) bbdf7817f839 wibo: 0.4.2 -> 0.6.14 a329ca6aea6e immich: unvendor exiftool ee1cffa25c45 immich: 1.119.1 -> 1.120.1 d6899545c5bf typos-lsp: 0.1.27 -> 0.1.30 73e03e065ec8 luaPackages.toml-edit: 0.6.0 -> 0.6.1 2b3acacf0856 pyton312Packages.arelle: 18.3 -> 2.30.25, unbreak, refactor (#337284) d55bf75cb9fe python312Packages.uuid6: fix package version metadata (#354857) 5e5ec22c6f3d skia: unbreak darwin (#354557) c00cc16b63b0 home-assistant-custom-components.moonraker: 1.3.7 -> 1.4.0 (#354863) 93a01b05975a teamspeak3: drop 'arch' variable 2ad379b1c350 panoply: 5.5.4 -> 5.5.5 (#354771) 10a4498042d9 home-assistant-custom-components.moonraker: 1.3.7 -> 1.4.0 c48cd19fe52a python312Packages.uuid6: fix package version metadata 25628a6ed53a python3Packages.{consonance,yowsup}: fix build; refactor (#354690) 3bb8fc0f8844 compose2nix: 0.2.3 -> 0.3.1 e4ea814f0c8e teamspeak3: avoid `with lib;` 585c5ae3bcfa teamspeak3: remove NIX_REDIRECTS 4d98fc18e856 teamspeak3: rename from teamspeak_client 05eff5c687c1 python3Packages.torch: switch to apple-sdk_13 (#351778) e5017770eb89 teamspeak_client: run installer script without -x by default 2568cfa34889 teamspeak_client: install to opt/ subdirectory 3830a3dbf641 teamspeak_client: modernise installPhase 49a5c6431cb9 teamspeak_client: remove unnecessary dependencies 9db530c94c90 teamspeak_client: use autoPatchelfHook rather than manual patchelf cba4002e45b3 teamspeak_client: refactor libquazip patching 1a5940c3e8b3 teamspeak_client: use wrapQtAppsHook 56a739f756c9 teamspeak_client: make libredirect a regular runtimeDep 0f029a19c62b teamspeak_client: run phase hooks cdd40cb89c34 teamspeak_client: refactor QT deps c056c7dd7a11 teamspeak_client: use regular libcxx f3840380fd31 teamspeak_client: don't wrap with cc's libdir 168a80a4eaea nwg-drawer: 0.5.0 -> 0.5.2 e3893e5c3c76 python312Packages.python-axolotl-curve25519: fix build (#354706) 031786067bea slint-lsp: remove obsolete libXrandr input e70954dca60d alacritty: remove obsolete libXrandr input 3690e2cfea0d python312Packages.mypy-boto3-*: updates (#354714) 414bf9701593 python312Packages.chromadb: 0.5.17 -> 0.5.18 (#354715) ce51df0a5ba5 python312Packages.gehomesdk: 0.5.28 -> 0.5.29 (#354716) cec3c09abdec cnspec: 11.28.1 -> 11.29.0 (#354722) 8bfbd4e1f8d3 python312Packages.cyclopts: 2.9.9 -> 3.0.0 (#354719) b003bd16857f wit-bindgen: 0.33.0 -> 0.34.0 32cd6d84d744 python312Packages.msgraph-sdk: 1.11.0 -> 1.12.0 (#354816) 63a139ae1c3c python312Packages.millheater: refactor bcbe1d7185f3 python311Packages.angr: 9.2.126 -> 9.2.127 (#354742) 92e125410c20 python312Packages.stripe: 11.1.0 -> 11.2.0 acc043c769ce python312Packages.stravalib: 2.0 → 2.1 43fa5ea2c9aa sketchybar-app-font: 2.0.25 -> 2.0.27 (#354779) 8540b13b1d20 josm: 19230 → 19253 (#354506) f8486a3f1d9c vscode-extensions.sourcery.sourcery: 1.23.0 -> 1.24.0 (#354612) d87258ad94bd python311Packages.pymc: fix hash (#354840) 13c119bf1a64 .github: Add a "Module requests" issue template (#342713) 2212fad7704e laravel: 5.8.3 -> 5.9.2 (#354696) ebc1473d52f3 octoprint: 1.10.2 -> 1.10.3 d429e8592fb8 python312Packages.wtforms: 3.1.2 -> 3.2.1 (#350180) da39eb7dd037 treewide: use dontCargo{Build,Check,Install} (#354024) 0120ed5ea9f1 ruffle: remove obsolete libXrandr input 77c0b0b54457 halloy: remove obsolete libXrandr input 68d10c6cc3bb cosmic-term: remove obsolete libXrandr input 86d824132693 cosmic-edit: remove obsolete libXrandr input f641f65b03b4 chiptrack: init at 0.3.1 (#320790) d91e9dd0faa5 cosmic-comp: remove obsolete libXrandr input a0bc021caebf coppwr: remove obsolete libXrandr input 2dcf8afc6007 aider-chat: add playwright version (#354796) 499926182ad1 positron-bin: fix darwin not unpacking the .dmg 3d3185b49655 proton-ge-bin: GE-Proton9-18 -> GE-Proton9-20 52c3ce5d48fe qownnotes: 24.9.8 -> 24.11.1 (#354770) 7cb44f20f6b3 zed-editor: make node-based built-in LSPs work on NixOS 658a8762ea0d jan: 0.5.6 -> 0.5.7 b2f43234a2c3 adolc: fix clang build 5186ad13f487 adolc: modernize c880f1f46bfe adolc: format f3cced0b682e python312Packages.pyosmium: 4.0.1 -> 4.0.2 (#354831) a806a3b2e597 python311Packages.pymc: fix hash 9a695a958884 go-mockery: 2.46.0 -> 2.46.3 1cd03b9a6446 dotenvx: 1.14.2 -> 1.22.0 50cff47c417c bootterm: init at 0.5 (#352951) 0927ff824cde python3Packages.rioxarray: 0.17.0 -> 0.18.1 (#354630) e42a71a5de98 krabby: 0.2.0 -> 0.2.1 (#354812) df1e170e33c5 python312Packages.pyosmium: 4.0.1 -> 4.0.2 92c3f8cf92c0 wasmer: 5.0.0 -> 5.0.1 (#354116) 8ac37da4f6ed xml2rfc: 3.23.2 -> 3.24.0 7ecad5abbd99 maintainers: add therealgramdalf fe17e8dfaa6b python312Packages.xml2rfc: 3.23.2 -> 3.24.0 b323e1c5c4e2 komga: 1.14.0 -> 1.14.1 c04d7170e047 team-list: establish java team 8b2a02dc9de8 vscode-extensions.ms-windows-ai-studio.windows-ai-studio: init at 0.6.1 146c62ba33a4 vscode-extensions.ms-vscode-remote.vscode-remote-extensionpack: init at 0.26.0 5c44f6f77c96 nanoflann: 1.6.1 -> 1.6.2 (#354423) 21069db14d33 python312Packages.weblate-language-data: 2024.8 -> 2024.13 b71a8b49f59b live-server: 0.8.0 -> 0.9.0 (#354395) f5e91559fddc python312Packages.cmsdials: 1.3.0 -> 1.4.0 (#354397) 286db1ef230d wasmtime: 26.0.0 -> 26.0.1 (#354412) 939318029769 erg: 0.6.45 -> 0.6.47 45cef36e39b2 nixosTests.postgresql: run nixfmt 128244b59818 nixosTests.postgresql: use a common pattern throughout all tests 9035573855d9 nixosTests.postgresql: move all postgresql related nixosTests into one folder db2d6a00abe5 postgresqlPackages.anonymizer: make passthru.tests work with correct package 23c19a255fab postgresqlPackages.timescaledb: make passthru.tests work with correct package 6d7da20a9044 postgresqlPackages.tsja: make passthru.tests work with correct package a5c41ae80a2f postgresqlPackages.pgvecto-rs: make passthru.tests work with correct package 0af934adf740 postgresqlPackages.pgjwt: make passthru.tests work with correct package ecffab1fdaf8 postgresqlPackages.postgis: move nixosTests.postgis into package aded718a9824 postgresqlPackages.apache_datasketches: move nixosTests.apache_datasketches into package 139c5466764b postgresql: add passthru.tests.postgresql-tls-client-cert f6c2de926290 postgresql: add passthru.tests.postgresql 319d82d5c218 nixosTests.postgresql-wal2json: avoid manual imports 65ef7381c8d7 nixosTests.postgresql-jit: avoid manual imports a1ae4377e090 nixosTests.postgresql-wal-receiver: avoid manual imports 75d51c588914 postgresqlVersions: init d3feaaebea18 nixosTests.pgjwt: fix test e2636cf342ea python312Packages.msgraph-sdk: 1.11.0 -> 1.12.0 3bf6a063b3c7 Merge: postgresqlPackages: fix some builds on darwin (#354748) 059fc0f2dea1 gh-dash: 4.7.0 -> 4.7.1 8f55df5aa879 krabby: 0.2.0 -> 0.2.1 f11b5ff8a21a Merge: pg-dump-anon: use latest postgresql available (#354526) 0a7544a42300 python312Packages.anthropic: 0.35.0 -> 0.39.0 b01d3ee0239c python312Packages.polars: 1.9.0 -> 1.12.0 8f3dad550fd1 python312Packages.lacuscore: 1.11.3 -> 1.12.1 446aa3f0b262 python312Packages.playwrightcapture: 1.26.3 -> 1.27.0 635e9d2ebb5b sile: switch to the zstd based source 172cb3ef53e1 openpgp-card-tools: Add shell completions and man pages (#354287) 91e4660ed8fc git-warp-time: init at 0.8.4 d60f27f889da ov: 0.36.0 -> 0.37.0 b35c45a2c174 python312Packages.imap-tools: 1.7.3 -> 1.7.4 (#354754) 31aa6f6edf2b python312Packages.nice-go: 0.3.9 -> 0.3.10 (#354750) bba140c5a34b python312Packages.free-proxy: 1.1.2 -> 1.1.3 (#354539) c61adda6befd python312Packages.dinghy: 1.3.2 -> 1.3.3 6430e02e54ef cotp: 1.9.1 -> 1.9.2 (#354558) 9139ad63f22f granted: 0.36.0 -> 0.36.1 (#354572) 275614510a2c python312Packages.ucsmsdk: 0.9.20 -> 0.9.21 (#354596) cff5cbc5a1d9 python312Packages.aiortm: 0.9.24 -> 0.9.25 (#354607) 043d2cb44863 python312Packages.whenever: 0.6.10 -> 0.6.12 (#354613) 646347d50787 pulumi-bin: 3.137.0 -> 3.138.0 (#354618) 807e43e55923 msi-ec: 0-unstable-2024-09-19 -> 0-unstable-2024-11-04 (#353627) 02e3707a2cae python312Packages.jedi-language-server: 0.41.4 -> 0.42.0 (#354713) d8a18ae783d8 python312Packages.mitogen: 0.3.16 -> 0.3.18 (#354717) b276bfa32bff python312Packages.multiscale-spatial-image: 2.0.0 -> 2.0.1 (#354720) df67f3f7b25a helix-gpt: 0.31.0 -> 0.34.0 (#354767) 7307a896451d home-assistant-custom-lovelace-modules.mushroom: 4.0.8 -> 4.1.0 (#354787) 9559e9044e8a python312Packages.qbittorrent-api: 2024.9.67 -> 2024.10.68 (#354681) 45d7d8c8b3cd python312Packages.millheater: 0.11.8 -> 0.12.0 3061dbd29c06 ab-av1: 0.7.18 -> 0.7.19 (#354684) 3be1322ad99d python312Packages.objprint: 0.2.3 -> 0.3.0 (#354693) a8e970898daa ccls: 0.20240505 -> 0.20241108 (#354698) d5df6af63621 python312Packages.tencentcloud-sdk-python: 3.0.1261 -> 3.0.1262 (#354699) 2bac553f5a50 okteto: 3.0.0 -> 3.1.0 (#354702) d7a60669490e ocamlPackages.http-mirage-client: 0.0.7 -> 0.0.8 (#354650) 011f48fb221a fluent-bit: 3.1.9 -> 3.1.10 (#354664) f8ba284376ec python312Packages.guidata: 3.7.0 -> 3.7.1 d9353697ca64 tile38: 1.33.3 -> 1.33.4 (#354674) 4f101cae7065 aider-chat: add playwright version 7953deea2419 keybase-gui: 6.2.4 -> 6.4.0 (#336886) 20e8995972d4 thunderbird: 128.4.0esr -> 128.4.2esr (#354213) 312ce1b65c40 hickory-dns: 0.25.0-alpha.2 -> 0.25.0-alpha.3 b89f8a710d16 prusa-slicer, super-slicer, mediathekview: remove Moredread as maintainer d2d4c4f350b9 restic: 0.17.2 -> 0.17.3 (#354582) 38a52bbfd430 restic: disable tests on non-linux c98b0cad092c home-assistant-custom-lovelace-modules.mushroom: 4.0.8 -> 4.1.0 70ca880f3511 gnome-online-accounts: 3.52.0 → 3.52.1 247ee3b0379e mutter: 47.0 → 47.1 6b438be4d92a gvfs: 1.56.0 → 1.56.1 748ada2ba6e0 gnome-shell-extensions: 47.0 → 47.1 b3b9989a367d gnome-shell: 47.0 → 47.1 d45192210e86 gnome-remote-desktop: 47.0 → 47.1 ea1a562cb95a gnome-control-center: 47.0.1 → 47.1.1 9b6dabf3f2ff kubelogin-oidc: switch to recommended pattern for implicit attr defaults 4d089cffa925 kubelogin-oidc: 1.30.1 -> 1.31.0 f0bee68628ec robo: 5.0.0 -> 5.1.0 (#354707) 6fb6032d36ef roave-backward-compatibility-check: 8.9.0 -> 8.10.0 (#354705) 04f72b6930e8 ispc: 1.25.0 -> 1.25.3 (#354585) a4e298635f25 waylock: 1.2.1 -> 1.3.0 7fa514f53139 waylock: port update script to bash a9669e1be8c7 d2: 0.6.7 -> 0.6.8 a31f2a7b37f2 pluginupdate.py: fix bugs and add improvements; vimPlugins: sort properly (#353786) 8d9c4bfb9851 helix-gpt: 0.31 -> 0.34 2ef132b3585e gifski: 1.14.4 -> 1.32.0 (#346255) e02828f01cd1 python312Packages.scikit-fmm: remove stale substituteInPlace, unbreak (#354509) 7bb5dfe0e470 sketchybar-app-font: 2.0.25 -> 2.0.27 894ab7c90845 wttrbar: 0.10.6 -> 0.11.0 bc63a2f7c3c8 lapce: unbreak x86_64-darwin (#354566) dcdd61e5e5b2 whitesur-kde: 2022-05-01-unstable-2024-09-26 -> 2022-05-01-unstable-2… (#353112) 67fa71469a6b python3Packages.pgsanity: fix build e07f6a75653d python3Packages.mirakuru: fix build on darwin in sandbox 1b89b9a99d80 python3Packages.mirakuru: fix build on darwin 2515edf5369e qogir-kde: 0-unstable-2024-09-21 -> 0-unstable-2024-10-30 (#352723) 5f45ecf05c14 python312Packages.docling-parse: 2.0.2 -> 2.0.3 (#354691) cf6a8c9b4b9f chore: update references to `nix-review` to `nixpkgs-review` bc5b75eb11b1 mysql80: 8.0.39 -> 8.0.40 (#350248) 9bcab985ab58 stardust-xr-kiara: 0-unstable-2024-07-07 -> 0-unstable-2024-07-13 ea5908112814 python3Packages.mirakuru: 2.5.2 -> 2.5.3 a2dc61cee92a panoply: 5.5.4 -> 5.5.5 9ba75eb753b5 mysql-shell-innovation: add libutil on darwin; refactor to new SDK pattern 194e35dd632a mysql-shell: add libutil on darwin; refactor to new SDK pattern 54953ef09a04 qownnotes: 24.9.8 -> 24.11.1 8091ea3f24bb Merge: postgresql_17: fix build (#354571) 274d5afbc552 python312Packages.githubkit: 0.11.11 -> 0.11.14 3b91a81423cd treewide: remove redundant patches and locks (#354215) c4f452f621f6 vimPlugins.neoconf-nvim: add dependencies c701c72b71f7 wl-gammarelay-rs: 0.4.1 -> 1.0.0 (#353023) b11943b30173 nhost-cli: 1.24.5 -> 1.27.0 (#352589) 82f6fe5a5762 OWNERS: correct path after 1st by-name migration (#354753) 44800d7c800e .git-blame-ignore-revs: add 'treewide: migrate packages to pkgs/by-name, take 1' 7a56cc79c651 marwaita-red: 22 -> 22.2 (#354662) fa2cae8e77f8 treewide: migrate packages to pkgs/by-name, take 1 (#354531) 8f29f19bc162 mysql-shell: 8.4.1 -> 8.4.3, mysql-shell-innovation: 9.0.1 -> 9.1.0 (#349181) 8c2c5fa14d77 nixos/nzbget: add option to override package (#302204) f8bb0b875ad8 factorio: 2.0.14 -> 2.0.15 (#354040) ff0df8fe7aee php: 8.4.0RC3 -> 8.4.0RC4, 8.3.12 -> 8.3.13 (#354562) 751912c95af1 OWNERS: correct path after 1st by-name migration 648e59c8a3ce python312Packages.imap-tools: 1.7.3 -> 1.7.4 be978743512b Fix: use lib.mkPackageOption ba83a0dba006 Merge branch 'master' into patch-1 a96dce89d048 PR feedback: Replace pkg variable, move package statement 571c71e6f73a treewide: migrate packages to pkgs/by-name, take 1 b5f67acfbf3c nix-forecast: init at 0.1.0 (#354661) bfd5f3d9ffca glfw3: added vulkan support e98f8506648f python312Packages.nice-go: 0.3.9 -> 0.3.10 e79b71782a4c budgie-media-player-applet: 1.0.1 -> 1.1.1 (#354308) 4801d0c2a3a5 postgresql17Packages.{pg_cron,pg_hll}: fix build on x86_64-darwin b9cf08c8e5ec cargo-mobile2: 0.17.3 -> 0.17.4 (#354677) dde21924f83f vimPlugins.quarto-nvim: add dependencies (#354634) df20742283ba ombi: allow overriding package in module (#345814) a50d7295727e darwin.openwith: remove apple_sdk.frameworks 112d505ce4a2 clickhouse: fix compilation on aarch64-linux (#353983) 3fe7c149cbbb libreoffice: disable tests on Qt5 2be7c57b9325 python312Packages.ruff: 0.7.2 -> 0.7.3 (#354580) eeb4b7041961 nixos/hebbot: Fix systemd service (#354098) dde890851a3c python311Packages.angr: 9.2.126 -> 9.2.127 58e6cb8ad805 python312Packages.cle: 9.2.126 -> 9.2.127 7a83dade0a7d python312Packages.claripy: 9.2.126 -> 9.2.127 82870db16ad2 python312Packages.pyvex: 9.2.126 -> 9.2.127 1e20869209d8 python312Packages.ailment: 9.2.126 -> 9.2.127 5a5694d2ff97 python312Packages.archinfo: 9.2.126 -> 9.2.127 bf11ccc0e233 clouddrive2: 0.7.21 -> 0.8.3 (#354273) 951d196036af stardust-xr-magnetar: init at 0-unstable-2024-08-31 (#354623) 18f2cc30ef90 stardust-xr-gravity: init at 0-unstable-2024-08-20 (#354616) 90f890e79327 stardust-xr-atmosphere: init at 0-unstable-2024-08-22 (#354633) fd3e1541866a libreoffice-still: 24.2.5.2 -> 24.2.7.2 b60b7b6b05c1 libreoffice-fresh: 24.8.0.3 -> 24.8.2.1 dc31ff18ec84 stardust-xr-phobetor: init at 0-unstable-2024-02-10 (#354637) 996e9d64594d python311Packages.pysnow: fix deps and tests, unbreak (#354464) 5f8f11ff862b stardust-xr-protostar: init at 0-unstable-2024-07-19 (#354614) f3e2ba5038e9 stardust-xr-sphereland: init at 0-unstable-2023-11-06 (#354638) 99d3107b49fe stardust-xr-flatland: init at 0-unstable-2024-04-13 (#324395) 780275051aa2 stardust-xr-kiara: init at 0-unstable-2024-07-07 (#324404) ff09150750be basedpyright: 1.19.0 -> 1.21.0 (#354204) aff0cebe5ab3 fishPlugins.*: fix versions 8b4272426c92 python312Packages.magic-wormhole-transit-relay: 0.3.1 -> 0.4.0 54baabae77a7 ssh-tools: 1.8-unstable-2024-03-18 -> 1.9 (#353042) 972dfa3efafc python312Packages.objprint: add changelog to meta ca6c07d985d5 cnspec: 11.28.1 -> 11.29.0 788591e73b39 python312Packages.cyclopts: 2.9.9 -> 3.0.0 b156e982136d .github: Add a "Module requests" issue template 1df32493a41c python312Packages.mypy-boto3-verifiedpermissions: 1.35.30 -> 1.35.55 25114110f49e python312Packages.mypy-boto3-synthetics: 1.35.18 -> 1.35.56 dd882eb62402 python312Packages.mypy-boto3-s3control: 1.35.12 -> 1.35.55 aede3250222f python312Packages.mypy-boto3-resource-explorer-2: 1.35.25 -> 1.35.56 ddb9a7fcd1d7 python312Packages.mypy-boto3-quicksight: 1.35.43 -> 1.35.56 6db171d873a5 python312Packages.mypy-boto3-pinpoint-sms-voice-v2: 1.35.43 -> 1.35.57 c548504474ae nzportable: init at 2.0.0-indev+20241012190425 47904c8dd760 python312Packages.mypy-boto3-lambda: 1.35.49 -> 1.35.57 1e7b5db19091 python312Packages.mypy-boto3-lakeformation: 1.35.0 -> 1.35.55 f04bedb8b097 python312Packages.mypy-boto3-guardduty: 1.35.39 -> 1.35.55 f696f2da0ac9 python312Packages.mypy-boto3-firehose: 1.35.0 -> 1.35.57 815da64d5641 python312Packages.mypy-boto3-eks: 1.35.45 -> 1.35.57 da42eb80266f python312Packages.mypy-boto3-codebuild: 1.35.49 -> 1.35.55 f283f98e923e python312Packages.mypy-boto3-cleanrooms: 1.35.51 -> 1.35.56 764ae6081bc7 python312Packages.mypy-boto3-chime-sdk-media-pipelines: 1.35.0 -> 1.35.57 df705189ee44 python312Packages.mypy-boto3-batch: 1.35.53 -> 1.35.57 a4a1020e7137 python312Packages.mypy-boto3-autoscaling: 1.35.53 -> 1.35.56 e770aff17974 python312Packages.multiscale-spatial-image: 2.0.0 -> 2.0.1 f396caa8d752 python312Packages.chromadb: 0.5.17 -> 0.5.18 2160918a0b90 python312Packages.jedi-language-server: 0.41.4 -> 0.42.0 cb5a79de97b2 python312Packages.gehomesdk: 0.5.28 -> 0.5.29 ac3c8ae13d0a python312Packages.mitogen: 0.3.16 -> 0.3.18 b7c678532145 nix-update: 1.5.2 -> 1.6.0 (#354708) 1cc81439e761 nixosTests.frr: fix warning, use nodes.router instead of nodes.router.config f93219dfa08f nixosTests.frr: format using nixfmt df11922a6da8 nix-update: 1.5.2 -> 1.6.0 63d9179dd4e9 python312Packages.python-axolotl-curve25519: refactor 533fffa449e4 python312Packages.python-axolotl-curve25519: fix build on darwin 45dd2b73eacf python312Packages.tencentcloud-sdk-python: 3.0.1261 -> 3.0.1262 7c69e10ceb1b okteto: 3.0.0 -> 3.1.0 83d18d4dc3ee python311Packages.yowsup: refactor c0ec6c8c3c3c python311Packages.yowsup: fix build a0f0aac19598 ccls: 0.20240505 -> 0.20241108 5abc7f27a20e python312Packages.objprint: 0.2.3 -> 0.3.0 1fa9b80b0afd release: block on `aarch64` on `*-darwin` channels ab7489d373ff python311Packages.consonance: refactor c76f00a4efe6 python311Packages.consonance: fix build f323f1ccfef7 nix-forecast: init at 0.1.0 bdfa0f011297 python3Packages.pywebview: build fix for tests 78b5698555d8 ab-av1: 0.7.18 -> 0.7.19 8dfa246bb10c python312Packages.qbittorrent-api: 2024.9.67 -> 2024.10.68 4c7aa6428fe9 cargo-mobile2: 0.17.3 -> 0.17.4 df3d7683fed1 tile38: 1.33.3 -> 1.33.4 4f0337923244 quarto: apply deno 2 compatibility patch 69cc148de30a quarto: 1.6.30 -> 1.6.33 39769f9fc86f python311Packages.tsfresh: fix build on darwin 80335810c8c6 wl-gammarelay-rs: 0.4.1 -> 1.0.0 cf772c1b5608 fluent-bit: 3.1.9 -> 3.1.10 3603e0d5ea48 marwaita-red: 22 -> 22.2 5a82dc34b00e nhost-cli: 1.24.5 -> 1.27.0 40641c90b547 python312Packages.polars: 1.7.1 -> 1.9.0 b5f7f510393d ocamlPackages.http-mirage-client: 0.0.7 -> 0.0.8 a784f38df795 stardust-xr-sphereland: init at 0-unstable-2023-11-06 2c31f63228ab stardust-xr-phobetor: init at 0-unstable-2024-02-10 66bb24d74424 vimPlugins.quarto-nvim: add dependencies 02871d95ebeb mesonlsp: fix aarch64-darwin build, mark as broken on x86_64-darwin 2e2d6027352b stardust-xr-atmosphere: init at 0-unstable-2024-08-22 e9b1d2d5ac63 vimPlugins: sort properly a6fe798a015a pluginupdate.py: fix bugs and add improvements 8b503ec432ce pluginupdate.py: reformat with ruff d339f93f3225 bsc: remove axv2 when building on non x86 system 385eb6ae4dff python3Packages.rioxarray: 0.17.0 -> 0.18.1 5a1e1f65a908 stardust-xr-flatland: init at 0-unstable-2024-04-13 4b02cabbbe0c stardust-xr-protostar: init at 0-unstable-2024-07-19 839ecef9050e stardust-xr-gravity: init at 0-unstable-2024-08-20 c3fd31e2c4ad stardust-xr-magnetar: init at 0-unstable-2024-08-31 a90b34f9e76b keybase{-gui}: add myself as maintainer 265d9a2adb8b keybase-gui: add `NIXOS_OZONE_WL` support a024f81d841c keybase-gui: 6.2.4 -> 6.4.0 562758261fd4 pulumi-bin: 3.137.0 -> 3.138.0 71330f93ee9e linux_xanmod_latest: 6.11.6 -> 6.11.7 efa0718e7482 linux_xanmod: 6.6.59 -> 6.6.60 61220d768de8 python3Packages.torch: switch to apple-sdk_13 afbbb9aaeb0d python312Packages.aiortm: 0.9.24 -> 0.9.25 ac5aaaa7336f python312Packages.whenever: 0.6.10 -> 0.6.12 086bfa238585 lib/minver: bump to 2.3.17 a5b695b34b6b python312Packages.ucsmsdk: 0.9.20 -> 0.9.21 c3afba78f24e python311Packages.qutip: relax numpy build-time constraint, unbreak 0a48b45c5af7 xar: fix Linux build on staging-next 1754ed842e2d ispc: 1.25.0 -> 1.25.3 b8e62002b5d3 python312Packages.msprime: relax numpy build-time constraint, unbreak 226843be6a9f python312Packages.pysnow: patch tests, unbreak b8b4cdc90390 doc: revise Darwin SDK documentation 5db8bf44deb0 openpgp-card-tools: Add shell completions and man pages 120103ec7cc9 restic: 0.17.2 -> 0.17.3 80458ba97944 stardust-xr-kiara: init at 0-unstable-2024-07-07 676db521744e postgresql_17: fix build b2945bc0a84f python312Packages.langgraph: Fix unit tests that were breaking Hydra c64c064437f5 python312Packages.babelfont: 3.0.5 -> 3.0.6 c26249be9a66 lapce: format with nixfmt-rfc-style 896db32853f5 lapce: unbreak x86_64-darwin 3e9c905d355a nomad_1_9: 1.9.0 -> 1.9.2 4a1393afe0f1 python312Packages.ruff: 0.7.2 -> 0.7.3 78705eaeb106 skia: unbreak darwin d1478e78c0ac postgresqlPackages.system_stats: fix build on darwin af11b38d2131 cotp: 1.9.1 -> 1.9.2 c78b55b3b684 protonvpn-gui: 4.6.0 -> 4.7.3 29d02718132f wasmtime: 26.0.0 -> 26.0.1 1af3b8486fb2 granted: 0.36.0 -> 0.36.1 1bb3362ddfb5 python312Packages.free-proxy: 1.1.2 -> 1.1.3 dd59f2cfe919 budgie-media-player-applet: 1.0.1 -> 1.1.1 0418996c9685 pg-dump-anon: use latest postgresql available 6ec5b8d597ba netclient: 0.25.0 -> 0.26.0 e600b8b00b33 newlib: enable parallel build 16518a3f3d4b factorio: 2.0.14 -> 2.0.15 6c2d6fa844bc leo-editor: 6.8.1 -> 6.8.2 84b68b839ac3 python312Packages.tskit: relax numpy build-time constraint, unbreak bd2ea530520b python312Packages.scikit-fmm: run checkPhase hooks, echo check command 1c418186cfd2 python312Packages.scikit-fmm: remove stale substituteInPlace, unbreak ee27c02106f3 kube-state-metrics: 2.13.0 -> 2.14.0 0465be1b8f0e python311Packages.pysnow: fix deps, unbreak eeb52b79d149 vscode-extensions.shd101wyy.markdown-preview-enhanced: 0.8.14 -> 0.8.15 19595c35d78c crates-tui: init at 0.1.20 92647d759237 vale: 3.8.0 -> 3.9.0 44992762f0cc basedpyright: 1.19.0 -> 1.21.0 27c93e95f9a8 tulip: fix compilation by adding the `-fpermissive` flag A typecast from unsigned char* to char* in the source broke the build 987c737557b1 python312Packages.guidata: 3.6.3 -> 3.7.0 07d2ee58bae2 nanoflann: 1.6.1 -> 1.6.2 b74fdd238641 treewide: remove redundant patches and locks a588dee7465d python312Packages.cmsdials: 1.3.0 -> 1.4.0 b75334c2f965 live-server: 0.8.0 -> 0.9.0 86fbc2f2d8c6 python312Packages.redis-om: 0.3.2 -> 0.3.3 00cc5342828c python312Packages.kornia: 0.7.3 -> 0.7.4 831c38e31987 python3Packages.fastcrc: init at 0.3.2 a01b23fa72ac cartridges: run meson checks 57f23ed8b1a8 cartridges: 2.9.3 -> 2.10.1 cea2eef9fa5d clouddrive2: 0.7.21 -> 0.8.3 b62797a3d7ed tulip: format using nixfmt fb358db1b51f thunderbird-128-unwrapped: 128.4.0esr -> 128.4.2esr d56656e48729 yosys: 0.46 -> 0.47 43d0f16226c8 pyton312Packages.arelle: 18.3 -> 2.30.25, unbreak, refactor 0e174ba654b7 python3Packages.proton-vpn-network-manager: 0.9.1 -> 0.9.4 f4485f7c41af python3Packages.proton-vpn-api-core: 0.35.5 -> 0.36.4 074f93408e5a proton-vpn-local-agent: 0-unstable-2024-10-10 -> 1.0.0 da0bfe800600 signal-desktop: remove stdenv.cc.cc from runtimeDeps de8c3feb7fbf wasmer: 5.0.0 -> 5.0.1 16970e3252d0 nixos/hebbot: Fix systemd service 9e1b88a44350 libbassmidi: init at 2.4.15.3 05ac36fa30a3 treewide: use dontCargo{Build,Check,Install} 3e646301a07e smartcat: 1.7.1 -> 2.1.0 9609ea875774 vscode-extensions.streetsidesoftware.code-spell-checker: 4.0.14 -> 4.0.15 975f4c45ae5c beszel: init at 0.6.2 887a74fd5784 clickhouse: fix compilation on aarch64-linux 3f2bbfd68b79 nixos/openvpn3: add `/etc/openvpn3/configs` to `systemd.tmpfiles` 9642cf41060a cfn-nag: added mathstlouis to maintainers abcf5fb9b943 maintainer-list: added mathstlouis c771f151f8bf cfn-nag: added meta.mainProgram ff17208a821a cfn-nag: fix gemfile so that binaries are generated dd086ca40200 msi-ec: 0-unstable-2024-09-19 -> 0-unstable-2024-11-04 4b13779f3321 python3Packages.subliminal: mark as not broken 9b7877aa1fc7 kubectl-graph: init at 0.7.0 aebe9a354b7b regripper: update-2023-07-23 -> 0-unstable-2024-11-02 db15554b6954 htcondor: 23.10.1 -> 24.1.1 d90f320eb26d bootterm: init at 0.5 45d7127c77df mesonlsp: 4.3.5 -> 4.3.7 1a774a95d219 python312Packages.wtforms: 3.1.2 -> 3.2.1 682d4d76aa8c containerlab: 0.58.0 -> 0.59.0 7abbb28c59b9 whitesur-kde: 2022-05-01-unstable-2024-09-26 -> 2022-05-01-unstable-2024-11-01 b9e3b9dbb22b ssh-tools: 1.8-unstable-2024-03-18 -> 1.9 4eceb5ba2fef maintainers: add deadbaed c952a4bfdbec vscode-extensions.sainnhe.gruvbox-material: init at 6.5.2 d4e2d6e00c84 maintainers: add thtrf 1301e4f0b024 pyamlboot.tests: fix the eval 6030ff068ad7 gnuplot: fix build with `withTeXLive = true` b6cf7b27b7c0 qogir-kde: 0-unstable-2024-09-21 -> 0-unstable-2024-10-30 4d8081767bc5 lomiri.lomiri-content-hub: nixfmt, modernise 4ce2e1df58ec lomiri.lomiri-download-manager: nixfmt, modernise 5cc3c54a6425 lomiri.lomiri-ui-toolkit: nixfmt, modernise ba59f61a725a lomiri.u1db-qt: Add meta.changelog 95c0233ed962 lomiri.lomiri-action-api: nixfmt, modernise bafb37491e96 libsForQt5.accounts-qml-module: Fix version b8c432b54a5a libsForQt5.accounts-qml-module: nixfmt, modernise 8a5f86237dba lomiri.lomiri-content-hub: Enable qdoc docs 03b310e94cbc lomiri.lomiri-indicator-network: Enable qdoc docs e0d5bd98ffbc lomiri.lomiri-download-manager: Enable qdoc docs d04843ce6096 lomiri.lomiri-ui-toolkit: Enable qdoc docs ac976c912dfb jasp-desktop: add patch to fix crash when using qt 6.8 8f74b6cdaf78 lomiri.lomiri-action-api: Enable qdoc docs eeea8d648db2 lomiri.u1db-qt: Enable qdoc docs 4442e5ac9161 libsForQt5.accounts-qml-module: Enable qdoc docs 9dd1f943ecd1 nixos/nextcloud-notify_push: fix defaultText rendering bed43b44613d nixos/hardware.nitrokey: update documentation 38ec993a582f nixos/hardware.nitrokey: replace libnitrokey with nitrokey-udev-rules d43f004d1fe4 nitrokey-udev-rules: init at 1.0.0 8ffcca7fd0a0 maintainers: add robinkrahl 2280b9bf4a98 python312Packages.bsdiff4: 1.2.4 -> 1.2.5 9ce864871fdc python312Packages.rio-tiler: 6.7.0 → 7.0.1 1caf42170d5a vscode-extensions.continue.continue: 0.8.44 -> 0.8.54 d931f342a429 mysql80: 8.0.39 -> 8.0.40 07c81867c907 dolphin-emu-primehack: 1.0.6a -> 1.0.7a, qt5 -> qt6, unpin fmt c3ceedeac1ac obs-studio-plugins.obs-hyperion: patch stateChanged deprecation cbcee2460787 mysql-shell-innovation: 9.0.1 -> 9.1.0 c7a381c92a79 mysql-shell: 8.4.1 -> 8.4.3 933ccc51f4a5 maintainers: add rksm 1a48ff707293 python312Packages.morecantile: 5.4.2 -> 6.0.0 c02e155285ef vscode-extensions.esbenp.prettier-vscode: 10.4.0 -> 11.0.0 6e6fc7ca2658 nixos/acme: do not limit credentials functionality to DNS/S3 config 7467f7d59f13 nixos/roundcube: add example for `database.passwordFile` 04dbbd436515 teamviewer: introduce services.teamviewer.package option 2928912a7c74 teamviewer: remove "with lib;" 89ecd0313160 teamviewer: format file 5146c143bbf1 gifski: 1.14.4 -> 1.32.0 a44e0fe3dc9f pyton312Packages.sphinx-autodoc2: init at 0.5.0 0b097987fe34 nixos/localsend: allow udp port 9ac4777d98d0 nixos/localsend: add package option a3843a7ee564 chiptrack: init at 0.3.1 5d49d4cfa1a4 nixos/guix: use exec to start the payload binary 410ae87bf5e2 nixos/boinc: use exec to start the payload binary e8a9775a6167 nixos/nzbget: add option to override package git-subtree-dir: third_party/nixpkgs git-subtree-split: dc460ec76cbff0e66e269457d7b728432263166c
2024-11-16 15:43:04 +00:00
teamspeak_client = teamspeak3; # Added 2024-11-07
teck-programmer = throw "teck-programmer was removed because it was broken and unmaintained"; # added 2024-08-23
teleport_13 = throw "teleport 13 has been removed as it is EOL. Please upgrade to Teleport 14 or later"; # Added 2024-05-26
teleport_14 = throw "teleport 14 has been removed as it is EOL. Please upgrade to Teleport 15 or later"; # Added 2024-10-18
temurin-bin-20 = throw "Temurin 20 has been removed as it has reached its end of life"; # Added 2024-08-01
temurin-jre-bin-20 = throw "Temurin 20 has been removed as it has reached its end of life"; # Added 2024-08-01
temurin-bin-19 = throw "Temurin 19 has been removed as it has reached its end of life"; # Added 2024-08-01
temurin-jre-bin-19 = throw "Temurin 19 has been removed as it has reached its end of life"; # Added 2024-08-01
temurin-bin-18 = throw "Temurin 18 has been removed as it has reached its end of life"; # Added 2024-08-01
temurin-jre-bin-18 = throw "Temurin 18 has been removed as it has reached its end of life"; # Added 2024-08-01
temurin-bin-16 = throw "Temurin 16 has been removed as it has reached its end of life"; # Added 2024-08-01
temurin-jre-bin-22 = throw "Temurin 22 has been removed as it has reached its end of life"; # Added 2024-09-24
temurin-bin-22 = throw "Temurin 22 has been removed as it has reached its end of life"; # Added 2024-09-24
tepl = libgedit-tepl; # Added 2024-04-29
testVersion = testers.testVersion; # Added 2022-04-20
tfplugindocs = terraform-plugin-docs; # Added 2023-11-01
invalidateFetcherByDrvHash = testers.invalidateFetcherByDrvHash; # Added 2022-05-05
timescale-prometheus = throw "'timescale-prometheus' has been renamed to/replaced by 'promscale'"; # Converted to throw 2024-10-17
tightvnc = throw "'tightvnc' has been removed as the version 1.3 is not maintained upstream anymore and is insecure"; # Added 2024-08-22
tix = tclPackages.tix; # Added 2024-10-02
tkcvs = tkrev; # Added 2022-03-07
tkimg = tclPackages.tkimg; # Added 2024-10-02
toil = throw "toil was removed as it was broken and requires obsolete versions of libraries"; # Added 2024-09-22
tokodon = plasma5Packages.tokodon;
tokyo-night-gtk = tokyonight-gtk-theme; # Added 2024-01-28
tomcat_connectors = apacheHttpdPackages.mod_jk; # Added 2024-06-07
tor-browser-bundle-bin = tor-browser; # Added 2023-09-23
transmission = lib.warn (transmission3Warning {}) transmission_3; # Added 2024-06-10
transmission-gtk = lib.warn (transmission3Warning {suffix = "-gtk";}) transmission_3-gtk; # Added 2024-06-10
transmission-qt = lib.warn (transmission3Warning {suffix = "-qt";}) transmission_3-qt; # Added 2024-06-10
treefmt = treefmt2; # 2024-06-28
libtransmission = lib.warn (transmission3Warning {prefix = "lib";}) libtransmission_3; # Added 2024-06-10
tracker = lib.warn "tracker has been renamed to tinysparql" tinysparql; # Added 2024-09-30
tracker-miners = lib.warn "tracker-miners has been renamed to localsearch" localsearch; # Added 2024-09-30
transfig = fig2dev; # Added 2022-02-15
transifex-client = transifex-cli; # Added 2023-12-29
trfl = throw "trfl has been removed, because it has not received an update for 3 years and was broken"; # Added 2024-07-25
trezor_agent = trezor-agent; # Added 2024-01-07
openai-triton-llvm = triton-llvm; # added 2024-07-18
trust-dns = hickory-dns; # Added 2024-08-07
tumpa = throw "tumpa has been removed, as it is broken"; # Added 2024-07-15
turbogit = throw "turbogit has been removed as it is unmaintained upstream and depends on an insecure version of libgit2"; # Added 2024-08-25
tvbrowser-bin = tvbrowser; # Added 2023-03-02
tvheadend = throw "tvheadend has been removed as it nobody was willing to maintain it and it was stuck on an unmaintained version that required FFmpeg 4; please see https://github.com/NixOS/nixpkgs/pull/332259 if you are interested in maintaining a newer version"; # Added 2024-08-21
typst-fmt = typstfmt; # Added 2023-07-15
typst-preview = throw "The features of 'typst-preview' have been consolidated to 'tinymist', an all-in-one language server for typst"; # Added 2024-07-07
### U ###
uade123 = uade; # Added 2022-07-30
uberwriter = throw "'uberwriter' has been renamed to/replaced by 'apostrophe'"; # Converted to throw 2024-10-17
ubootBeagleboneBlack = throw "'ubootBeagleboneBlack' has been renamed to/replaced by 'ubootAmx335xEVM'"; # Converted to throw 2024-10-17
ubuntu_font_family = ubuntu-classic; # Added 2024-02-19
uclibc = uclibc-ng; # Added 2022-06-16
uclibcCross = uclibc-ng; # Added 2022-06-16
uefi-firmware-parser = throw "The uefi-firmware-parser package was dropped since it was unmaintained."; # Added 2024-06-21
unicorn-emu = throw "'unicorn-emu' has been renamed to/replaced by 'unicorn'"; # Converted to throw 2024-10-17
uniffi-bindgen = throw "uniffi-bindgen has been removed since upstream no longer provides a standalone package for the CLI";
unifi-poller = unpoller; # Added 2022-11-24
unifi-video = throw "unifi-video has been removed as it has been unsupported upstream since 2021"; # Added 2024-10-01
unifi5 = throw "'unifi5' has been removed since its required MongoDB version is EOL."; # Added 2024-04-11
unifi6 = throw "'unifi6' has been removed since its required MongoDB version is EOL."; # Added 2024-04-11
unifi7 = throw "'unifi7' has been removed since it is vulnerable to CVE-2024-42025 and its required MongoDB version is EOL."; # Added 2024-10-01
unifiLTS = throw "'unifiLTS' has been removed since UniFi no longer has LTS and stable releases. Use `pkgs.unifi` instead."; # Added 2024-04-11
unifiStable = throw "'unifiStable' has been removed since UniFi no longer has LTS and stable releases. Use `pkgs.unifi` instead."; # Converted to throw 2024-04-11
untrunc = throw "'untrunc' has been renamed to/replaced by 'untrunc-anthwlock'"; # Converted to throw 2024-10-17
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 2024-10-17
urxvt_bidi = throw "'urxvt_bidi' has been renamed to/replaced by 'rxvt-unicode-plugins.bidi'"; # Converted to throw 2024-10-17
urxvt_font_size = throw "'urxvt_font_size' has been renamed to/replaced by 'rxvt-unicode-plugins.font-size'"; # Converted to throw 2024-10-17
urxvt_perl = throw "'urxvt_perl' has been renamed to/replaced by 'rxvt-unicode-plugins.perl'"; # Converted to throw 2024-10-17
urxvt_perls = throw "'urxvt_perls' has been renamed to/replaced by 'rxvt-unicode-plugins.perls'"; # Converted to throw 2024-10-17
urxvt_tabbedex = throw "'urxvt_tabbedex' has been renamed to/replaced by 'rxvt-unicode-plugins.tabbedex'"; # Converted to throw 2024-10-17
urxvt_theme_switch = throw "'urxvt_theme_switch' has been renamed to/replaced by 'rxvt-unicode-plugins.theme-switch'"; # Converted to throw 2024-10-17
urxvt_vtwheel = throw "'urxvt_vtwheel' has been renamed to/replaced by 'rxvt-unicode-plugins.vtwheel'"; # Converted to throw 2024-10-17
util-linuxCurses = util-linux; # Added 2022-04-12
utillinux = util-linux; # Added 2020-11-24, keep until node2nix is phased out, see https://github.com/NixOS/nixpkgs/issues/229475
### V ###
validphys2 = throw "validphys2 has been removed, since it has a broken dependency that was removed"; # Added 2024-08-21
vamp = { vampSDK = vamp-plugin-sdk; }; # Added 2020-03-26
vaapiIntel = intel-vaapi-driver; # Added 2023-05-31
vaapiVdpau = libva-vdpau-driver; # Added 2024-06-05
vaultwarden-vault = vaultwarden.webvault; # Added 2022-12-13
varnish74 = throw "varnish 7.4 is EOL. Either use the LTS or upgrade."; # Added 2024-10-31
varnish74Packages = throw "varnish 7.4 is EOL. Either use the LTS or upgrade."; # Added 2024-10-31
vdirsyncerStable = vdirsyncer; # Added 2020-11-08, see https://github.com/NixOS/nixpkgs/issues/103026#issuecomment-723428168
ventoy-bin = ventoy; # Added 2023-04-12
ventoy-bin-full = ventoy-full; # Added 2023-04-12
verilog = iverilog; # Added 2024-07-12
ViennaRNA = viennarna; # Added 2023-08-23
vimHugeX = vim-full; # Added 2022-12-04
vim_configurable = vim-full; # Added 2022-12-04
vinagre = throw "'vinagre' has been removed as it has been archived upstream. Consider using 'gnome-connections' or 'remmina' instead"; # Added 2024-09-14
vinegar = throw "'vinegar' was removed due to being blocked by Roblox, rendering the package useless"; # Added 2024-08-23
virtscreen = throw "'virtscreen' has been removed, as it was broken and unmaintained"; # Added 2024-10-17
vkBasalt = vkbasalt; # Added 2022-11-22
vkdt-wayland = vkdt; # Added 2024-04-19
inherit (libsForQt5.mauiPackages) vvave; # added 2022-05-17
### W ###
wakatime = wakatime-cli; # 2024-05-30
wal_e = throw "wal_e was removed as it is unmaintained upstream and depends on the removed boto package; upstream recommends using wal-g or pgbackrest"; # Added 2024-09-22
wapp = tclPackages.wapp; # Added 2024-10-02
wayfireApplications-unwrapped = throw ''
'wayfireApplications-unwrapped.wayfire' has been renamed to/replaced by 'wayfire'
'wayfireApplications-unwrapped.wayfirePlugins' has been renamed to/replaced by 'wayfirePlugins'
'wayfireApplications-unwrapped.wcm' has been renamed to/replaced by 'wayfirePlugins.wcm'
'wayfireApplications-unwrapped.wlroots' has been removed
''; # Add 2023-07-29
waypoint = throw "waypoint has been removed from nixpkgs as the upstream project was archived"; # Added 2024-04-24
webkitgtk = lib.warn "Explicitly set the ABI version of 'webkitgtk'" webkitgtk_4_0;
wineWayland = wine-wayland;
win-virtio = virtio-win; # Added 2023-10-17
wkhtmltopdf-bin = wkhtmltopdf; # Added 2024-07-17
wlroots_0_16 = throw "'wlroots_0_16' has been removed in favor of newer versions"; # Added 2024-07-14
wlroots = wlroots_0_18; # wlroots is unstable, we must keep depending on 'wlroots_0_*', convert to package after a stable(1.x) release
wordpress6_3 = throw "'wordpress6_3' has been removed in favor of the latest version"; # Added 2024-08-03
wordpress6_4 = throw "'wordpress6_4' has been removed in favor of the latest version"; # Added 2024-08-03
wordpress6_5 = wordpress_6_5; # Added 2024-08-03
wormhole-rs = magic-wormhole-rs; # Added 2022-05-30. preserve, reason: Arch package name, main binary name
wpa_supplicant_ro_ssids = lib.trivial.warn "Deprecated package: Please use wpa_supplicant instead. Read-only SSID patches are now upstream!" wpa_supplicant;
wrapLisp_old = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
wmii_hg = wmii;
wrapGAppsHook = wrapGAppsHook3; # Added 2024-03-26
write_stylus = styluslabs-write-bin; # Added 2024-10-09
### X ###
x509-limbo = throw "'x509-limbo' has been removed from nixpkgs"; # Added 2024-10-22
xarchive = throw "'xarchive' has been removed due to lack of maintenance upstream. Consider using 'file-roller' instead"; # Added 2024-10-19
xbmc-retroarch-advanced-launchers = throw "'xbmc-retroarch-advanced-launchers' has been renamed to/replaced by 'kodi-retroarch-advanced-launchers'"; # Converted to throw 2024-10-17
xdg_utils = throw "'xdg_utils' has been renamed to/replaced by 'xdg-utils'"; # Converted to throw 2024-10-17
xen-light = throw "'xen-light' has been renamed to/replaced by 'xen-slim'"; # Added 2024-06-30
xen-slim = throw "'xen-slim' has been renamed to 'xen'. The old Xen package with built-in components no longer exists"; # Added 2024-10-05
xen_4_16 = throw "While Xen 4.16 was still security-supported when it was removed from Nixpkgs, it would have reached its End of Life a couple of days after NixOS 24.11 released. To avoid shipping an insecure version of Xen, the Xen Project Hypervisor Maintenance Team decided to delete the derivation entirely"; # Added 2024-10-05
xen_4_17 = throw "Due to technical challenges involving building older versions of Xen with newer dependencies, the Xen Project Hypervisor Maintenance Team decided to switch to a latest-only support cycle. As Xen 4.17 would have been the 'n-2' version, it was removed"; # Added 2024-10-05
xen_4_18 = throw "Due to technical challenges involving building older versions of Xen with newer dependencies, the Xen Project Hypervisor Maintenance Team decided to switch to a latest-only support cycle. As Xen 4.18 would have been the 'n-1' version, it was removed"; # Added 2024-10-05
xen_4_19 = throw "Use 'xen' instead"; # Added 2024-10-05
xenPackages = throw "The attributes in the xenPackages set have been promoted to the top-level. (xenPackages.xen_4_19 -> xen)";
xineLib = throw "'xineLib' has been renamed to/replaced by 'xine-lib'"; # Converted to throw 2024-10-17
xineUI = throw "'xineUI' has been renamed to/replaced by 'xine-ui'"; # Converted to throw 2024-10-17
xlsxgrep = throw "'xlsxgrep' has been dropped due to lack of maintenance."; # Added 2024-11-01
xmlada = gnatPackages.xmlada; # Added 2024-02-25
xmr-stak = throw "xmr-stak has been removed from nixpkgs because it was broken"; # Added 2024-07-15
xmake-core-sv = throw "'xmake-core-sv' has been removed, use 'libsv' instead"; # Added 2024-10-10
xonsh-unwrapped = python3Packages.xonsh; # Added 2024-06-18
xprite-editor = throw "'xprite-editor' has been removed due to lack of maintenance upstream. Consider using 'pablodraw' or 'aseprite' instead"; # Added 2024-09-14
xulrunner = firefox-unwrapped; # Added 2023-11-03
xvfb_run = throw "'xvfb_run' has been renamed to/replaced by 'xvfb-run'"; # Converted to throw 2024-10-17
xwaylandvideobridge = libsForQt5.xwaylandvideobridge; # Added 2024-09-27
### Y ###
yacc = throw "'yacc' has been renamed to/replaced by 'bison'"; # Converted to throw 2024-10-17
yafaray-core = libyafaray; # Added 2022-09-23
yi = throw "'yi' has been removed, as it was broken and unmaintained"; # added 2024-05-09
youtrack_2022_3 = throw "'youtrack_2022_3' has been removed as it was deprecated. Please update to the 'youtrack' package."; # Added 2024-10-17
yrd = throw "'yrd' has been removed, as it was broken and unmaintained"; # added 2024-05-27
### Z ###
zfsStable = zfs; # Added 2024-02-26
zfsUnstable = zfs_unstable; # Added 2024-02-26
zinc = zincsearch; # Added 2023-05-28
zk-shell = throw "zk-shell has been removed as it was broken and unmaintained"; # Added 2024-08-10
zkg = throw "'zkg' has been replaced by 'zeek'";
zq = zed.overrideAttrs (old: { meta = old.meta // { mainProgram = "zq"; }; }); # Added 2023-02-06
zz = throw "'zz' has been removed because it was archived in 2022 and had no maintainer"; # added 2024-05-10
### UNSORTED ###
dina-font-pcf = throw "'dina-font-pcf' has been renamed to/replaced by 'dina-font'"; # Converted to throw 2024-10-17
dnscrypt-proxy2 = dnscrypt-proxy; # Added 2023-02-02
posix_man_pages = throw "'posix_man_pages' has been renamed to/replaced by 'man-pages-posix'"; # Converted to throw 2024-10-17
ttyrec = throw "'ttyrec' has been renamed to/replaced by 'ovh-ttyrec'"; # Converted to throw 2024-10-17
zplugin = throw "'zplugin' has been renamed to/replaced by 'zinit'"; # Converted to throw 2024-10-17
zyn-fusion = zynaddsubfx; # Added 2022-08-05
inherit (stdenv.hostPlatform) system; # Added 2021-10-22
inherit (stdenv) buildPlatform hostPlatform targetPlatform; # Added 2023-01-09
freebsdCross = freebsd; # Added 2024-09-06
netbsdCross = netbsd; # Added 2024-09-06
openbsdCross = openbsd; # Added 2024-09-06
# LLVM packages for (integration) testing that should not be used inside Nixpkgs:
llvmPackages_latest = llvmPackages_19;
/* If these are in the scope of all-packages.nix, they cause collisions
between mixed versions of qt. See:
https://github.com/NixOS/nixpkgs/pull/101369 */
inherit (plasma5Packages)
akonadi akregator arianna ark bluedevil bomber bovo breeze-grub breeze-gtk
breeze-icons breeze-plymouth breeze-qt5 colord-kde discover dolphin dragon elisa falkon
ffmpegthumbs filelight granatier gwenview k3b kactivitymanagerd kaddressbook
kalzium kapman kapptemplate kate katomic kblackbox kblocks kbounce
kcachegrind kcalc kcharselect kcolorchooser kde-cli-tools kde-gtk-config
kdenlive kdeplasma-addons kdevelop-pg-qt kdevelop-unwrapped kdev-php
kdev-python kdevelop kdf kdialog kdiamond keditbookmarks kfind
kgamma5 kget kgpg khelpcenter kig kigo killbots kinfocenter kitinerary
kleopatra klettres klines kmag kmail kmenuedit kmines kmix kmplot
knavalbattle knetwalk knights kollision kolourpaint kompare konsole kontact
konversation korganizer kpkpass krdc kreversi krfb kscreen kscreenlocker
kshisen ksquares ksshaskpass ksystemlog kteatime ktimer ktorrent ktouch
kturtle kwallet-pam kwalletmanager kwave kwayland-integration kwin kwrited
marble merkuro milou minuet okular oxygen oxygen-icons5 picmi
plasma-browser-integration plasma-desktop plasma-integration plasma-nano
plasma-nm plasma-pa plasma-mobile plasma-systemmonitor plasma-thunderbolt
plasma-vault plasma-workspace plasma-workspace-wallpapers polkit-kde-agent
powerdevil qqc2-breeze-style sddm-kcm skanlite skanpage spectacle
systemsettings xdg-desktop-portal-kde yakuake zanshin
;
kalendar = merkuro; # Renamed in 23.08
kfloppy = throw "kfloppy has been removed upstream in KDE Gear 23.08";
inherit (plasma5Packages.thirdParty)
krohnkite
krunner-ssh
krunner-symbols
kwin-dynamic-workspaces
kwin-tiling
plasma-applet-caffeine-plus
plasma-applet-virtual-desktop-bar
;
inherit (libsForQt5)
sddm
;
inherit (pidginPackages)
pidgin-indicator
pidgin-latex
pidgin-msn-pecan
pidgin-mra
pidgin-skypeweb
pidgin-carbons
pidgin-xmpp-receipts
pidgin-otr
pidgin-osd
pidgin-sipe
pidgin-window-merge
purple-discord
purple-googlechat
purple-hangouts
purple-lurch
purple-matrix
purple-mm-sms
purple-plugin-pack
purple-signald
purple-slack
purple-vk-plugin
purple-xmpp-http-upload
tdlib-purple
pidgin-opensteamworks
purple-facebook
;
}