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.

143 lines
3.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchzip
, cimg
2019-09-07 10:22:02 +00:00
, cmake
2023-05-23 23:49:21 +00:00
, coreutils
, curl
2019-09-07 10:22:02 +00:00
, fftw
, gimp
, gimpPlugins
, gmic
2023-05-23 23:49:21 +00:00
, gnugrep
, gnused
, graphicsmagick
2019-09-07 10:22:02 +00:00
, libjpeg
, libpng
, libtiff
, ninja
2023-05-23 23:49:21 +00:00
, nix-update
, opencv3
, openexr
, pkg-config
2019-09-07 10:22:02 +00:00
, qtbase
, qttools
, wrapQtAppsHook
2023-05-23 23:49:21 +00:00
, writeShellScript
, zlib
, variant ? "standalone"
2019-09-07 10:22:02 +00:00
}:
2018-09-27 17:28:23 +00:00
let
variants = {
gimp = {
extraDeps = [
gimp
gimp.gtk
];
description = "GIMP 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.";
stdenv.mkDerivation (finalAttrs: {
pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}";
2023-07-03 07:54:29 +00:00
version = "3.2.6";
2018-09-27 17:28:23 +00:00
src = fetchzip {
url = "https://gmic.eu/files/source/gmic_${finalAttrs.version}.tar.gz";
2023-07-03 07:54:29 +00:00
hash = "sha256-asB1YftHfdb7JG87WJ+ggyMCu7qb0f+aCanl5LLi9VE=";
2018-09-27 20:41:26 +00:00
};
2018-09-27 17:28:23 +00:00
2019-09-07 10:22:02 +00:00
nativeBuildInputs = [
cmake
pkg-config
ninja
wrapQtAppsHook
2019-09-07 10:22:02 +00:00
];
2018-09-27 17:28:23 +00:00
buildInputs = [
gmic
2019-09-07 10:22:02 +00:00
qtbase
qttools
fftw
zlib
libjpeg
libtiff
libpng
opencv3
2019-09-07 10:22:02 +00:00
openexr
graphicsmagick
curl
] ++ variants.${variant}.extraDeps or [];
2018-09-27 17:28:23 +00:00
preConfigure = ''
cd gmic-qt
'';
2018-09-27 17:28:23 +00:00
postPatch = ''
patchShebangs \
translations/filters/csv2ts.sh \
translations/lrelease.sh
'';
cmakeFlags = [
"-DGMIC_QT_HOST=${if variant == "standalone" then "none" else variant}"
"-DENABLE_SYSTEM_GMIC=ON"
"-DENABLE_DYNAMIC_LINKING=ON"
];
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 17:28:23 +00:00
'';
2023-02-19 16:34:52 +00:00
passthru = {
tests = {
gimp-plugin = gimpPlugins.gmic;
# Needs to update them all in lockstep.
inherit cimg gmic;
};
2023-05-23 23:49:21 +00:00
updateScript = writeShellScript "gmic-qt-update-script" ''
set -euo pipefail
export PATH="${lib.makeBinPath [ coreutils curl gnugrep gnused nix-update ]}:$PATH"
latestVersion=$(curl 'https://gmic.eu/files/source/' \
| grep -E 'gmic_[^"]+\.tar\.gz' \
| sed -E 's/.+<a href="gmic_([^"]+)\.tar\.gz".+/\1/g' \
| sort --numeric-sort --reverse | head -n1)
if [[ '${finalAttrs.version}' = "$latestVersion" ]]; then
echo "The new version same as the old version."
exit 0
fi
nix-update --version "$latestVersion"
'';
2023-02-19 16:34:52 +00:00
};
meta = {
homepage = "http://gmic.eu/";
inherit (variants.${variant}) description;
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.lilyinstarlight ];
platforms = lib.platforms.unix;
2023-04-24 22:15:57 +00:00
mainProgram = "gmic_qt";
2018-09-27 17:28:23 +00:00
};
})