gimpPlugins.resynthesizer: 2.0.3 -> 3.0 (#466327)

This commit is contained in:
Felix Bühler
2025-12-02 21:42:54 +00:00
committed by GitHub
@@ -227,19 +227,25 @@ lib.makeScope pkgs.newScope (
Filters/Render/Texture...
*/
pname = "resynthesizer";
version = "2.0.3";
version = "3.0";
buildInputs = with pkgs; [ fftw ];
nativeBuildInputs = with pkgs; [ autoreconfHook ];
nativeBuildInputs = with pkgs; [
meson
ninja
];
makeFlags = [ "GIMP_LIBDIR=${placeholder "out"}/${gimp.targetLibDir}" ];
src = fetchFromGitHub {
owner = "bootchk";
repo = "resynthesizer";
rev = "v${version}";
sha256 = "1jwc8bhhm21xhrgw56nzbma6fwg59gc8anlmyns7jdiw83y0zx3j";
tag = "v${version}";
hash = "sha256-/Py5R1RxiftTR0z++mQzgTn/J9v4p8efuGZSfhe6FfA=";
};
meta = {
broken = gimp.majorVersion != "2.0";
broken = lib.versionOlder gimp.version "3";
description = "Suite of gimp plugins for texture synthesis";
homepage = "https://github.com/bootchk/resynthesizer";
license = [ lib.licenses.gpl3Plus ];
};
};