11 stdenv.mkDerivation (finalAttrs: {
12 pname = "krita-plugin-gmic";
15 src = fetchFromGitHub {
18 rev = "v${finalAttrs.version}";
19 hash = "sha256-SYE8kGvN7iD5OqiEEZpB/eRle67PrB5DojMC79qAQtg=";
21 sourceRoot = "${finalAttrs.src.name}/gmic-qt";
22 dontWrapQtApps = true;
26 translations/filters/csv2ts.sh \
27 translations/lrelease.sh
30 nativeBuildInputs = [ cmake extra-cmake-modules ];
35 libsForQt5.kcoreaddons
40 (lib.cmakeFeature "GMIC_QT_HOST" "krita-plugin")
41 # build krita's gmic instead of using the one from nixpkgs
42 (lib.cmakeBool "ENABLE_SYSTEM_GMIC" false)
46 homepage = "https://github.com/amyspark/gmic";
47 description = "GMic plugin for Krita";
48 license = lib.licenses.cecill21;
49 maintainers = with maintainers; [ lelgenio ];