about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-16 00:55:49 +0000
committerOrivej Desh <orivej@gmx.fr>2017-11-16 00:55:49 +0000
commit52c5386cd94aa6681cb7c818638c981d57d5f6a6 (patch)
tree63738422776b041335e4aca403c73534350c09cb /pkgs
parent089e0aaf722dffec033ec79f9ac7182c79504553 (diff)
downloadnixlib-52c5386cd94aa6681cb7c818638c981d57d5f6a6.tar
nixlib-52c5386cd94aa6681cb7c818638c981d57d5f6a6.tar.gz
nixlib-52c5386cd94aa6681cb7c818638c981d57d5f6a6.tar.bz2
nixlib-52c5386cd94aa6681cb7c818638c981d57d5f6a6.tar.lz
nixlib-52c5386cd94aa6681cb7c818638c981d57d5f6a6.tar.xz
nixlib-52c5386cd94aa6681cb7c818638c981d57d5f6a6.tar.zst
nixlib-52c5386cd94aa6681cb7c818638c981d57d5f6a6.zip
gimpPlugins.texturize: 2.1 -> 2.2.2017-07-28
The old source is gone, the author has migrated to github.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/graphics/gimp/plugins/default.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix
index 6b145ca09ee6..0d4215dd5bc2 100644
--- a/pkgs/applications/graphics/gimp/plugins/default.nix
+++ b/pkgs/applications/graphics/gimp/plugins/default.nix
@@ -139,15 +139,13 @@ rec {
   };
 
   texturize = pluginDerivation {
-    name = "texturize-2.1";
-    src = fetchurl {
-      url = mirror://sourceforge/gimp-texturize/texturize-2.1_src.tgz;
-      sha256 = "0cdjq25g3yfxx6bzx6nid21kq659s1vl9id4wxyjs2dhcv229cg3";
+    name = "texturize-2.2.2017-07-28";
+    src = fetchFromGitHub {
+      owner = "lmanul";
+      repo = "gimp-texturize";
+      rev = "de4367f71e40fe6d82387eaee68611a80a87e0e1";
+      sha256 = "1zzvbczly7k456c0y6s92a1i8ph4ywmbvdl8i4rcc29l4qd2z8fw";
     };
-    buildInputs = with pkgs; [ perl ];
-    patchPhase = ''
-      sed -i '/.*gimpimage_pdb.h.*/ d' src/*.c*
-    '';
     installPhase = "installPlugins src/texturize";
   };