gimpPlugins.resynthesizer2: init at 2.0.1. A rewrite with python wrappers; GUI is better for some tasks and worse for some other tasks.
This commit is contained in:
parent
bfc1ec2807
commit
48388dde18
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
{ pkgs, gimp }:
|
{ pkgs, gimp }:
|
||||||
let
|
let
|
||||||
inherit (pkgs) stdenv fetchurl pkgconfig glib;
|
inherit (pkgs) stdenv fetchurl pkgconfig glib fetchFromGitHub;
|
||||||
inherit (gimp) targetPluginDir targetScriptDir;
|
inherit (gimp) targetPluginDir targetScriptDir;
|
||||||
|
|
||||||
pluginDerivation = a: stdenv.mkDerivation ({
|
pluginDerivation = a: stdenv.mkDerivation ({
|
||||||
@ -116,6 +116,25 @@ rec {
|
|||||||
";
|
";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
resynthesizer2 = pluginDerivation {
|
||||||
|
/* menu:
|
||||||
|
Filters/Map/Resynthesize
|
||||||
|
Filters/Enhance/Smart enlarge
|
||||||
|
Filters/Enhance/Smart sharpen
|
||||||
|
Filters/Enhance/Smart remove selection
|
||||||
|
*/
|
||||||
|
name = "resynthesizer-2.0.1";
|
||||||
|
buildInputs = [ gimp pkgs.fftw pkgs.autoreconfHook ]
|
||||||
|
++ gimp.nativeBuildInputs;
|
||||||
|
makeFlags = "GIMP_LIBDIR=$out/lib/gimp/2.0/";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bootchk";
|
||||||
|
repo = "resynthesizer";
|
||||||
|
rev = "2.0.1";
|
||||||
|
sha256 = "1d214s0jsqxz83l9dd8vhnz3siw9fyw7xdhhir25ra7jiwxc99hd";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
texturize = pluginDerivation {
|
texturize = pluginDerivation {
|
||||||
name = "texturize-2.1";
|
name = "texturize-2.1";
|
||||||
buildInputs = [ gimp ] ++ gimp.nativeBuildInputs;
|
buildInputs = [ gimp ] ++ gimp.nativeBuildInputs;
|
||||||
|
Loading…
Reference in New Issue
Block a user