libgda5: Rename from libgda

It is dead, let’s stop making it look like the default.

+12 -10
+2 -2
pkgs/by-name/li/libgdamm/package.nix
··· 4 fetchurl, 5 pkg-config, 6 glibmm, 7 - libgda, 8 libxml2, 9 gnome, 10 mysqlSupport ? false, ··· 12 }: 13 14 let 15 - gda = libgda.override { 16 inherit mysqlSupport postgresSupport; 17 }; 18 in
··· 4 fetchurl, 5 pkg-config, 6 glibmm, 7 + libgda5, 8 libxml2, 9 gnome, 10 mysqlSupport ? false, ··· 12 }: 13 14 let 15 + gda = libgda5.override { 16 inherit mysqlSupport postgresSupport; 17 }; 18 in
+2 -2
pkgs/by-name/pl/planner/package.nix
··· 6 gsettings-desktop-schemas, 7 glib, 8 gtk3, 9 - libgda, 10 libxml2, 11 libxslt, 12 makeWrapper, ··· 45 ]; 46 47 buildInputs = [ 48 - libgda 49 libxml2 50 libxslt 51 glib
··· 6 gsettings-desktop-schemas, 7 glib, 8 gtk3, 9 + libgda5, 10 libxml2, 11 libxslt, 12 makeWrapper, ··· 45 ]; 46 47 buildInputs = [ 48 + libgda5 49 libxml2 50 libxslt 51 glib
+2 -2
pkgs/by-name/se/sequeler/package.nix
··· 15 gtk3, 16 glib, 17 libgee, 18 - libgda, 19 gtksourceview, 20 libxml2, 21 libsecret, ··· 23 }: 24 25 let 26 - sqlGda = libgda.override { 27 mysqlSupport = true; 28 postgresSupport = true; 29 };
··· 15 gtk3, 16 glib, 17 libgee, 18 + libgda5, 19 gtksourceview, 20 libxml2, 21 libsecret, ··· 23 }: 24 25 let 26 + sqlGda = libgda5.override { 27 mysqlSupport = true; 28 postgresSupport = true; 29 };
+4 -3
pkgs/development/libraries/libgda/default.nix pkgs/development/libraries/libgda/5.x.nix
··· 28 version = "5.2.10"; 29 30 src = fetchurl { 31 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 32 - hash = "sha256-b2zfe4BT9VO5B+DIimBk60jPJ1GFLrJDI9zwJ3kjNMg="; 33 }; 34 35 patches = [ ··· 97 98 passthru = { 99 updateScript = gnome.updateScript { 100 - packageName = pname; 101 versionPolicy = "odd-unstable"; 102 freeze = true; 103 };
··· 28 version = "5.2.10"; 29 30 src = fetchurl { 31 + url = "mirror://gnome/sources/libgda/${lib.versions.majorMinor version}/libgda-${version}.tar.xz"; 32 + hash = "sha256-1j1l4dwjgw6w4d1v4bl5a4kwyj7bcih8mj700ywm7xakh1xxyv3g"; 33 }; 34 35 patches = [ ··· 97 98 passthru = { 99 updateScript = gnome.updateScript { 100 + packageName = "libgda"; 101 + attrPath = "libgda5"; 102 versionPolicy = "odd-unstable"; 103 freeze = true; 104 };
+1
pkgs/top-level/aliases.nix
··· 677 libbitcoin-protocol = throw "libbitcoin-protocol has been removed as it required an obsolete version of Boost and had no maintainer in Nixpkgs"; # Added 2024-11-24 678 libdwg = throw "libdwg has been removed as upstream is unmaintained, the code doesn't build without significant patches, and the package had no reverse dependencies"; # Added 2024-12-28 679 libgcrypt_1_8 = throw "'libgcrypt_1_8' is end-of-life. Consider using 'libgcrypt' instead"; # Added 2025-01-05 680 libgme = game-music-emu; # Added 2022-07-20 681 libgnome-keyring3 = libgnome-keyring; # Added 2024-06-22 682 libgpgerror = throw "'libgpgerror' has been renamed to/replaced by 'libgpg-error'"; # Converted to throw 2024-10-17
··· 677 libbitcoin-protocol = throw "libbitcoin-protocol has been removed as it required an obsolete version of Boost and had no maintainer in Nixpkgs"; # Added 2024-11-24 678 libdwg = throw "libdwg has been removed as upstream is unmaintained, the code doesn't build without significant patches, and the package had no reverse dependencies"; # Added 2024-12-28 679 libgcrypt_1_8 = throw "'libgcrypt_1_8' is end-of-life. Consider using 'libgcrypt' instead"; # Added 2025-01-05 680 + libgda = lib.warnOnInstantiate "‘libgda’ has been renamed to ‘libgda5’" libgda5; # Added 2025-01-21 681 libgme = game-music-emu; # Added 2022-07-20 682 libgnome-keyring3 = libgnome-keyring; # Added 2024-06-22 683 libgpgerror = throw "'libgpgerror' has been renamed to/replaced by 'libgpg-error'"; # Converted to throw 2024-10-17
+1 -1
pkgs/top-level/all-packages.nix
··· 9544 extraOnly = true; 9545 }; 9546 9547 - libgda = callPackage ../development/libraries/libgda { }; 9548 9549 libgda6 = callPackage ../development/libraries/libgda/6.x.nix { }; 9550
··· 9544 extraOnly = true; 9545 }; 9546 9547 + libgda5 = callPackage ../development/libraries/libgda/5.x.nix { }; 9548 9549 libgda6 = callPackage ../development/libraries/libgda/6.x.nix { }; 9550