krita-plugin-gmic: init at 3.2.4.1

This commit is contained in:
lelgenio 2024-01-30 23:24:34 -03:00
parent 54e0dba1d2
commit d4bb486c8d
2 changed files with 56 additions and 1 deletions

View File

@ -2,7 +2,11 @@
, libsForQt5
, symlinkJoin
, unwrapped ? libsForQt5.callPackage ./. { }
, binaryPlugins ? [ ]
, krita-plugin-gmic
, binaryPlugins ? [
# Default plugins provided by upstream appimage
krita-plugin-gmic
]
}:
symlinkJoin {

View File

@ -0,0 +1,51 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, extra-cmake-modules
, fftw
, krita
, libsForQt5
}:
stdenv.mkDerivation (finalAttrs: {
pname = "krita-plugin-gmic";
version = "3.2.4.1";
src = fetchFromGitHub {
owner = "amyspark";
repo = "gmic";
rev = "v${finalAttrs.version}";
hash = "sha256-SYE8kGvN7iD5OqiEEZpB/eRle67PrB5DojMC79qAQtg=";
};
sourceRoot = "${finalAttrs.src.name}/gmic-qt";
dontWrapQtApps = true;
postPatch = ''
patchShebangs \
translations/filters/csv2ts.sh \
translations/lrelease.sh
'';
nativeBuildInputs = [ cmake extra-cmake-modules ];
buildInputs = [
fftw
krita.unwrapped
libsForQt5.kcoreaddons
libsForQt5.qttools
];
cmakeFlags = [
(lib.cmakeFeature "GMIC_QT_HOST" "krita-plugin")
# build krita's gmic instead of using the one from nixpkgs
(lib.cmakeBool "ENABLE_SYSTEM_GMIC" false)
];
meta = with lib; {
homepage = "https://github.com/amyspark/gmic";
description = "GMic plugin for Krita";
license = lib.licenses.cecill21;
maintainers = with maintainers; [ lelgenio ];
};
})