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 4 fetchurl, 5 5 pkg-config, 6 6 glibmm, 7 - libgda, 7 + libgda5, 8 8 libxml2, 9 9 gnome, 10 10 mysqlSupport ? false, ··· 12 12 }: 13 13 14 14 let 15 - gda = libgda.override { 15 + gda = libgda5.override { 16 16 inherit mysqlSupport postgresSupport; 17 17 }; 18 18 in
+2 -2
pkgs/by-name/pl/planner/package.nix
··· 6 6 gsettings-desktop-schemas, 7 7 glib, 8 8 gtk3, 9 - libgda, 9 + libgda5, 10 10 libxml2, 11 11 libxslt, 12 12 makeWrapper, ··· 45 45 ]; 46 46 47 47 buildInputs = [ 48 - libgda 48 + libgda5 49 49 libxml2 50 50 libxslt 51 51 glib
+2 -2
pkgs/by-name/se/sequeler/package.nix
··· 15 15 gtk3, 16 16 glib, 17 17 libgee, 18 - libgda, 18 + libgda5, 19 19 gtksourceview, 20 20 libxml2, 21 21 libsecret, ··· 23 23 }: 24 24 25 25 let 26 - sqlGda = libgda.override { 26 + sqlGda = libgda5.override { 27 27 mysqlSupport = true; 28 28 postgresSupport = true; 29 29 };
+4 -3
pkgs/development/libraries/libgda/default.nix pkgs/development/libraries/libgda/5.x.nix
··· 28 28 version = "5.2.10"; 29 29 30 30 src = fetchurl { 31 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 32 - hash = "sha256-b2zfe4BT9VO5B+DIimBk60jPJ1GFLrJDI9zwJ3kjNMg="; 31 + url = "mirror://gnome/sources/libgda/${lib.versions.majorMinor version}/libgda-${version}.tar.xz"; 32 + hash = "sha256-1j1l4dwjgw6w4d1v4bl5a4kwyj7bcih8mj700ywm7xakh1xxyv3g"; 33 33 }; 34 34 35 35 patches = [ ··· 97 97 98 98 passthru = { 99 99 updateScript = gnome.updateScript { 100 - packageName = pname; 100 + packageName = "libgda"; 101 + attrPath = "libgda5"; 101 102 versionPolicy = "odd-unstable"; 102 103 freeze = true; 103 104 };
+1
pkgs/top-level/aliases.nix
··· 677 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 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 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 680 681 libgme = game-music-emu; # Added 2022-07-20 681 682 libgnome-keyring3 = libgnome-keyring; # Added 2024-06-22 682 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 9544 extraOnly = true; 9545 9545 }; 9546 9546 9547 - libgda = callPackage ../development/libraries/libgda { }; 9547 + libgda5 = callPackage ../development/libraries/libgda/5.x.nix { }; 9548 9548 9549 9549 libgda6 = callPackage ../development/libraries/libgda/6.x.nix { }; 9550 9550