Unverified Commit cdc60eb5 authored by Felix Bühler's avatar Felix Bühler Committed by GitHub
Browse files

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

parents af48a8c9 bd69c59e
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -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 ];
      };
    };