about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-01-15 11:56:53 +0800
committerBobby Rong <rjl931189261@126.com>2023-01-15 11:56:53 +0800
commit5418640b81fb505e3999089777cca78bbc76486d (patch)
tree86aec934133ca4a45347993fa29a047d57bdc6a9 /pkgs/desktops/gnome-2/platform
parentdf34371428185b3099e2cffd1f825ca17a5254b7 (diff)
gnome2.gtkhtml4: remove
Unmaintained and no package depends on it.
Diffstat (limited to 'pkgs/desktops/gnome-2/platform')
-rw-r--r--pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix b/pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
deleted file mode 100644
index 72422cf41c35a..0000000000000
--- a/pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, fetchFromGitLab, pkg-config, gtk3, intltool, autoreconfHook, fetchpatch
-, GConf, enchant, isocodes, gnome-icon-theme, gsettings-desktop-schemas }:
-
-stdenv.mkDerivation rec {
-  version = "4.10.0";
-  pname = "gtkhtml";
-
-  src = fetchFromGitLab {
-    domain = "gitlab.gnome.org";
-    owner = "Archive";
-    repo = "gtkhtml";
-    rev = "master";
-    sha256 = "sha256-jL8YADvhW0o6I/2Uo5FNARMAnSbvtmFp+zWH1yCVvQk=";
-  };
-
-  patches = [
-    # Enables enchant2 support.
-    # Upstream is dead, no further releases are coming.
-    (fetchpatch {
-      name ="enchant-2.patch";
-      url = "https://aur.archlinux.org/cgit/aur.git/plain/enchant-2.patch?h=gtkhtml4&id=0218303a63d64c04d6483a6fe9bb55063fcfaa43";
-      sha256 = "f0OToWGHZwxvqf+0qosfA9FfwJ/IXfjIPP5/WrcvArI=";
-      extraPrefix = "";
-    })
-  ];
-
-  propagatedBuildInputs = [ gsettings-desktop-schemas gtk3 gnome-icon-theme GConf ];
-  nativeBuildInputs = [ pkg-config autoreconfHook intltool ];
-  buildInputs = [ enchant isocodes ];
-}