unixodbcDrivers: rename package set from unixODBCDrivers

fit package set name to new package name (see previous commit)
This commit is contained in:
quantenzitrone
2026-02-27 10:52:16 +01:00
parent 2226596501
commit d3354d8306
5 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ in
environment.unixODBCDrivers = lib.mkOption {
type = lib.types.listOf lib.types.package;
default = [ ];
example = lib.literalExpression "with pkgs.unixODBCDrivers; [ sqlite psql ]";
example = lib.literalExpression "with pkgs.unixodbcDrivers; [ sqlite psql ]";
description = ''
Specifies Unix ODBC drivers to be registered in
{file}`/etc/odbcinst.ini`. You may also want to
@@ -66,7 +66,7 @@
zlib,
at-spi2-core,
unixodbc,
unixODBCDrivers,
unixodbcDrivers,
libGL,
# darwin
moltenvk,
@@ -129,9 +129,9 @@ stdenv.mkDerivation {
glib
# unixodbc drivers
unixodbc
unixODBCDrivers.psql
unixODBCDrivers.sqlite
unixODBCDrivers.mariadb
unixodbcDrivers.psql
unixodbcDrivers.sqlite
unixodbcDrivers.mariadb
]
++ lib.optionals systemdSupport [
systemd
@@ -368,5 +368,5 @@
};
}
// lib.optionalAttrs config.allowAliases {
mysql = throw "unixODBCDrivers.mysql has been removed because it has been marked as broken since 2016."; # Added 2025-10-11
mysql = throw "unixodbcDrivers.mysql has been removed because it has been marked as broken since 2016."; # Added 2025-10-11
}
+1
View File
@@ -1963,6 +1963,7 @@ mapAliases {
unicap = throw "'unicap' has been removed because it is unmaintained"; # Added 2025-05-17
unifi-poller = throw "'unifi-poller' has been renamed to/replaced by 'unpoller'"; # Converted to throw 2025-10-27
unixODBC = warnAlias "'unixODBC' has been renamed to 'unixodbc'" unixodbc; # Added 2026-02-12
unixODBCDrivers = warnAlias "'unixODBCDrivers' has been renamed to 'unixodbcDrivers'" unixodbcDrivers; # Added 2026-02-12
unzoo = throw "'unzoo' has been removed since it is unmaintained upstream and doesn't compile with newer versions of GCC anymore"; # Removed 2025-05-24
usync = throw "'usync' has been removed as it is unused and unmaintained upstream"; # Added 2025-12-18
util-linuxCurses = throw "'util-linuxCurses' has been renamed to/replaced by 'util-linux'"; # Converted to throw 2025-10-27
+1 -1
View File
@@ -7618,7 +7618,7 @@ with pkgs;
autoreconfHook = buildPackages.autoreconfHook269;
};
unixODBCDrivers = recurseIntoAttrs (callPackages ../development/libraries/unixODBCDrivers { });
unixodbcDrivers = recurseIntoAttrs (callPackages ../development/libraries/unixODBCDrivers { });
valeStyles = recurseIntoAttrs (callPackages ../by-name/va/vale/styles.nix { });