about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2022-01-13 21:16:41 +0100
committerJan Tojnar <jtojnar@gmail.com>2022-01-15 05:35:27 +0100
commit94517ee0c77aebad0278a5e8888b86b66f8dad59 (patch)
tree93a7b270e04c22c749c60b49433c831473afc277 /pkgs/desktops/gnome-2
parentfe1ba3c9be690ce82e3f008912cc6a50bb2cc4b3 (diff)
gnome2.gtkhtml4: do not use patchFlags
Those apply to all patches making applying patches in the future problematic.
Diffstat (limited to 'pkgs/desktops/gnome-2')
-rw-r--r--pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix b/pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
index 9447a381a3fb8..580d0a8cc8296 100644
--- a/pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
+++ b/pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
@@ -12,11 +12,6 @@ stdenv.mkDerivation rec {
     rev = "master";
     sha256 = "sha256-jL8YADvhW0o6I/2Uo5FNARMAnSbvtmFp+zWH1yCVvQk=";
   };
-  propagatedBuildInputs = [ gsettings-desktop-schemas gtk3 gnome-icon-theme GConf ];
-  nativeBuildInputs = [ pkg-config ];
-  buildInputs = [ intltool enchant isocodes autoreconfHook ];
-
-  patchFlags = [ "-p0" ];
 
   patches = [
     # Enables enchant2 support.
@@ -24,7 +19,12 @@ stdenv.mkDerivation rec {
     (fetchpatch {
       name ="enchant-2.patch";
       url = "https://aur.archlinux.org/cgit/aur.git/plain/enchant-2.patch?h=gtkhtml4&id=0218303a63d64c04d6483a6fe9bb55063fcfaa43";
-      sha256 = "sha256-jkA/GgIiJZmxkbcBGQ26OZ1nuI502BMPwbPhsZkbgbY=";
+      sha256 = "f0OToWGHZwxvqf+0qosfA9FfwJ/IXfjIPP5/WrcvArI=";
+      extraPrefix = "";
     })
   ];
+
+  propagatedBuildInputs = [ gsettings-desktop-schemas gtk3 gnome-icon-theme GConf ];
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ intltool enchant isocodes autoreconfHook ];
 }