gimpPlugins.texturize: 2.1 -> 2.2.2017-07-28

The old source is gone, the author has migrated to github.

+6 -8
+6 -8
pkgs/applications/graphics/gimp/plugins/default.nix
··· 139 139 }; 140 140 141 141 texturize = pluginDerivation { 142 - name = "texturize-2.1"; 143 - src = fetchurl { 144 - url = mirror://sourceforge/gimp-texturize/texturize-2.1_src.tgz; 145 - sha256 = "0cdjq25g3yfxx6bzx6nid21kq659s1vl9id4wxyjs2dhcv229cg3"; 142 + name = "texturize-2.2.2017-07-28"; 143 + src = fetchFromGitHub { 144 + owner = "lmanul"; 145 + repo = "gimp-texturize"; 146 + rev = "de4367f71e40fe6d82387eaee68611a80a87e0e1"; 147 + sha256 = "1zzvbczly7k456c0y6s92a1i8ph4ywmbvdl8i4rcc29l4qd2z8fw"; 146 148 }; 147 - buildInputs = with pkgs; [ perl ]; 148 - patchPhase = '' 149 - sed -i '/.*gimpimage_pdb.h.*/ d' src/*.c* 150 - ''; 151 149 installPhase = "installPlugins src/texturize"; 152 150 }; 153 151