12 stdenv.mkDerivation (finalAttrs: {
13 pname = "krita-plugin-gmic";
16 src = fetchFromGitHub {
19 rev = "v${finalAttrs.version}";
20 hash = "sha256-SYE8kGvN7iD5OqiEEZpB/eRle67PrB5DojMC79qAQtg=";
22 sourceRoot = "${finalAttrs.src.name}/gmic-qt";
23 dontWrapQtApps = true;
27 translations/filters/csv2ts.sh \
28 translations/lrelease.sh
39 libsForQt5.kcoreaddons
44 (lib.cmakeFeature "GMIC_QT_HOST" "krita-plugin")
45 # build krita's gmic instead of using the one from nixpkgs
46 (lib.cmakeBool "ENABLE_SYSTEM_GMIC" false)
50 homepage = "https://github.com/amyspark/gmic";
51 description = "GMic plugin for Krita";
52 license = lib.licenses.cecill21;
53 maintainers = with maintainers; [ lelgenio ];