gnome2.libgnomeprintui: remove

Unmaintained and no package depends on it.

+1 -16
+1 -2
pkgs/desktops/gnome-2/default.nix
··· 16 17 libgnomeprint = callPackage ./platform/libgnomeprint { }; 18 19 - libgnomeprintui = callPackage ./platform/libgnomeprintui { }; 20 - 21 libgnomecups = callPackage ./platform/libgnomecups { }; 22 23 libgtkhtml = callPackage ./platform/libgtkhtml { }; ··· 80 gnome_python = throw "gnome2.gnome_python has been removed"; # 2023-01-14 81 gnome_python_desktop = throw "gnome2.gnome_python_desktop has been removed"; # 2023-01-14 82 libglademm = throw "gnome2.libglademm has been removed"; # 2022-01-15 83 python_rsvg = throw "gnome2.python_rsvg has been removed"; # 2023-01-14 84 })
··· 16 17 libgnomeprint = callPackage ./platform/libgnomeprint { }; 18 19 libgnomecups = callPackage ./platform/libgnomecups { }; 20 21 libgtkhtml = callPackage ./platform/libgtkhtml { }; ··· 78 gnome_python = throw "gnome2.gnome_python has been removed"; # 2023-01-14 79 gnome_python_desktop = throw "gnome2.gnome_python_desktop has been removed"; # 2023-01-14 80 libglademm = throw "gnome2.libglademm has been removed"; # 2022-01-15 81 + libgnomeprintui = throw "gnome2.libgnomeprintui has been removed"; # 2023-01-15 82 python_rsvg = throw "gnome2.python_rsvg has been removed"; # 2023-01-14 83 })
-14
pkgs/desktops/gnome-2/platform/libgnomeprintui/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, gtk2, gettext, intltool, libgnomecanvas, libgnomeprint, gnome-icon-theme }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "libgnomeprintui"; 5 - version = "2.18.6"; 6 - 7 - src = fetchurl { 8 - url = "mirror://gnome/sources/libgnomeprintui/${lib.versions.majorMinor version}/libgnomeprintui-${version}.tar.bz2"; 9 - sha256 = "0spl8vinb5n6n1krnfnr61dwaxidg67h8j94z9p59k2xdsvfashm"; 10 - }; 11 - 12 - nativeBuildInputs = [ pkg-config intltool ]; 13 - buildInputs = [ gtk2 gettext libgnomecanvas libgnomeprint gnome-icon-theme]; 14 - }
···