gnome2.gtkhtml: remove

Unmaintained and no package depends on it.

+1 -40
+1 -2
pkgs/desktops/gnome-2/default.nix
··· 35 35 36 36 libbonoboui = callPackage ./platform/libbonoboui { }; 37 37 38 - gtkhtml = callPackage ./platform/gtkhtml { enchant = pkgs.enchant1; }; 39 - 40 38 gtkhtml4 = callPackage ./platform/gtkhtml/4.x.nix { enchant = pkgs.enchant2; }; 41 39 42 40 gtkglext = callPackage ./platform/gtkglext { }; ··· 71 69 gnome_common = gnome-common; 72 70 gnome_python = throw "gnome2.gnome_python has been removed"; # 2023-01-14 73 71 gnome_python_desktop = throw "gnome2.gnome_python_desktop has been removed"; # 2023-01-14 72 + gtkhtml = throw "gnome2.gtkhtml has been removed"; # 2023-01-15 74 73 libglademm = throw "gnome2.libglademm has been removed"; # 2022-01-15 75 74 libgnomecups = throw "gnome2.libgnomecups has been removed"; # 2023-01-15 76 75 libgnomeprint = throw "gnome2.libgnomeprint has been removed"; # 2023-01-15
-17
pkgs/desktops/gnome-2/platform/gtkhtml/01_remove-disable-deprecated.patch
··· 1 - diff -Naur gtkhtml-3.32.2-orig/configure gtkhtml-3.32.2/configure 2 - --- gtkhtml-3.32.2-orig/configure 2011-02-05 23:12:31.000000000 -0500 3 - +++ gtkhtml-3.32.2/configure 2011-04-22 13:03:18.228874636 -0400 4 - @@ -5761,12 +5761,7 @@ 5 - 6 - if test "x${enable_deprecated_flags}" = "xyes"; then 7 - 8 - - list="-DG_DISABLE_DEPRECATED 9 - - -DPANGO_DISABLE_DEPRECATED 10 - - -DGDK_DISABLE_DEPRECATED 11 - - -DGDK_PIXBUF_DISABLE_DEPRECATED 12 - - -DGTK_DISABLE_DEPRECATED 13 - - -DGNOME_DISABLE_DEPRECATED" 14 - + list="" 15 - flags_supported="" 16 - flags_unsupported="" 17 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for supported compiler flags" >&5
-21
pkgs/desktops/gnome-2/platform/gtkhtml/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, gtk2, intltool, 2 - GConf, enchant, isocodes, gnome-icon-theme }: 3 - 4 - stdenv.mkDerivation rec { 5 - pname = "gtkhtml"; 6 - version = "3.32.2"; 7 - 8 - src = fetchurl { 9 - url = "mirror://gnome/sources/gtkhtml/${lib.versions.majorMinor version}/gtkhtml-${version}.tar.bz2"; 10 - sha256 = "17z3jwvpn8waz7bhwrk7a6vs9pad6sqmlxxcqwvxxq89ywy0ail7"; 11 - }; 12 - 13 - #From Debian, fixes build issue described here: 14 - #http://www.mail-archive.com/debian-bugs-rc@lists.debian.org/msg250091.html 15 - patches = [ ./01_remove-disable-deprecated.patch ]; 16 - 17 - nativeBuildInputs = [ pkg-config intltool ]; 18 - buildInputs = [ gtk2 GConf enchant isocodes gnome-icon-theme ]; 19 - 20 - NIX_LDFLAGS = "-lgthread-2.0"; 21 - }