nixpkgs/pkgs/tools/graphics/gmic-qt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

125 lines
2.6 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, variant ? "standalone"
2019-09-07 11:22:02 +01:00
, fetchFromGitHub
, fetchpatch
2019-09-07 11:22:02 +01:00
, cmake
, pkg-config
, ninja
, opencv3
2019-09-07 11:22:02 +01:00
, openexr
, graphicsmagick
, fftw
, zlib
, libjpeg
, libtiff
, libpng
, curl
, krita ? null
, gimp ? null
, gmic
, cimg
2019-09-07 11:22:02 +01:00
, qtbase
, qttools
, writeShellScript
, common-updater-scripts
, gnugrep
, gnused
, coreutils
, jq
2019-09-07 11:22:02 +01:00
}:
2018-09-27 18:28:23 +01:00
let
variants = {
gimp = {
extraDeps = [
gimp
gimp.gtk
];
description = "GIMP plugin for the G'MIC image processing framework";
};
krita = {
extraDeps = [
krita
];
description = "Krita plugin for the G'MIC image processing framework";
};
standalone = {
description = "Versatile front-end to the image processing framework G'MIC";
};
};
in
assert lib.assertMsg (builtins.hasAttr variant variants) "gmic-qt variant ${variant} is not supported. Please use one of ${lib.concatStringsSep ", " (builtins.attrNames variants)}.";
assert lib.assertMsg (builtins.all (d: d != null) variants.${variant}.extraDeps or []) "gmic-qt variant ${variant} is missing one of its dependencies.";
mkDerivation rec {
pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}";
2022-09-05 22:41:07 +01:00
version = "3.1.6";
2018-09-27 18:28:23 +01:00
src = fetchFromGitHub {
2018-09-27 21:41:26 +01:00
owner = "c-koi";
repo = "gmic-qt";
2018-09-28 13:01:44 +01:00
rev = "v.${version}";
2022-09-05 22:41:07 +01:00
sha256 = "sha256-/5wDHvJSMgEheg8YV4W40wUiHz25emIoFnGdfO8i92g=";
2018-09-27 21:41:26 +01:00
};
2018-09-27 18:28:23 +01:00
2019-09-07 11:22:02 +01:00
nativeBuildInputs = [
cmake
pkg-config
ninja
2019-09-07 11:22:02 +01:00
];
2018-09-27 18:28:23 +01:00
buildInputs = [
gmic
cimg
2019-09-07 11:22:02 +01:00
qtbase
qttools
fftw
zlib
libjpeg
libtiff
libpng
opencv3
2019-09-07 11:22:02 +01:00
openexr
graphicsmagick
curl
] ++ variants.${variant}.extraDeps or [];
2018-09-27 18:28:23 +01:00
2019-09-07 11:22:02 +01:00
cmakeFlags = [
"-DGMIC_QT_HOST=${if variant == "standalone" then "none" else variant}"
"-DENABLE_SYSTEM_GMIC:BOOL=ON"
2019-09-07 11:22:02 +01:00
];
2018-09-27 18:28:23 +01:00
patches = [
# NOTE: this should be removed when a new version is released.
(fetchpatch {
name = "fix_filter_translation_scripts.patch";
url = "https://github.com/c-koi/gmic-qt/commit/ccb9f29eda239d0c80663593cd90a6548c935b39.patch";
sha256 = "sha256-OzuJ6yGuDJweQ+1uin/pmJqZV79bN9E1Zuo+0iciwzg=";
})
];
postPatch = ''
patchShebangs \
translations/filters/csv2ts.sh \
translations/lrelease.sh
'';
postFixup = lib.optionalString (variant == "gimp") ''
echo "wrapping $out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt"
wrapQtApp "$out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt"
2018-09-27 18:28:23 +01:00
'';
meta = with lib; {
description = variants.${variant}.description;
homepage = "http://gmic.eu/";
license = licenses.gpl3Plus;
2018-09-27 18:28:23 +01:00
platforms = platforms.unix;
};
}