2020-04-24 23:36:52 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, mkDerivation
|
|
|
|
|
, fetchurl
|
|
|
|
|
, variant ? "standalone"
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, cmake
|
2021-02-05 17:12:51 +00:00
|
|
|
|
, pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, opencv3
|
|
|
|
|
, openexr
|
|
|
|
|
, graphicsmagick
|
|
|
|
|
, fftw
|
|
|
|
|
, zlib
|
|
|
|
|
, libjpeg
|
|
|
|
|
, libtiff
|
|
|
|
|
, libpng
|
|
|
|
|
, curl
|
|
|
|
|
, krita ? null
|
|
|
|
|
, gimp ? null
|
|
|
|
|
, qtbase
|
|
|
|
|
, qttools
|
2022-01-19 23:45:15 +00:00
|
|
|
|
, writeShellScript
|
|
|
|
|
, common-updater-scripts
|
|
|
|
|
, gnugrep
|
|
|
|
|
, gnused
|
|
|
|
|
, coreutils
|
|
|
|
|
, jq
|
2020-04-24 23:36:52 +00: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 {
|
2021-02-05 17:12:51 +00:00
|
|
|
|
pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}";
|
2022-01-19 23:45:15 +00:00
|
|
|
|
version = "3.0.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
gmic-community = fetchFromGitHub {
|
|
|
|
|
owner = "dtschump";
|
|
|
|
|
repo = "gmic-community";
|
2022-01-19 23:45:15 +00:00
|
|
|
|
rev = "df23b08bc52767762f0e38d040cd8ffeea4b865e";
|
|
|
|
|
sha256 = "euk5RsFPBgx2czAukPRdi/O4ahgXO8J8VJdiGHNge5M=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-01-19 23:45:15 +00:00
|
|
|
|
CImg = fetchFromGitHub {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
owner = "dtschump";
|
|
|
|
|
repo = "CImg";
|
|
|
|
|
rev = "v.${version}";
|
2022-01-19 23:45:15 +00:00
|
|
|
|
sha256 = "dC4VuWTz0uyFxLjBQ+2ggndHaCErcoI7tJMfkqbWmeg=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gmic_stdlib = fetchurl {
|
|
|
|
|
name = "gmic_stdlib.h";
|
|
|
|
|
url = "http://gmic.eu/gmic_stdlib${lib.replaceStrings ["."] [""] version}.h";
|
2022-01-19 23:45:15 +00:00
|
|
|
|
sha256 = "CAYSxw5NCmE29hie1/J1csBcdQvIrmZ/+mNMl0sLLGI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gmic = fetchFromGitHub {
|
|
|
|
|
owner = "dtschump";
|
|
|
|
|
repo = "gmic";
|
|
|
|
|
rev = "v.${version}";
|
2022-01-19 23:45:15 +00:00
|
|
|
|
sha256 = "PyeJmjOqjbHlZ1Xl3IpoOD6oZEcUrHNHqF7Ft1RZDL4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gmic_qt = fetchFromGitHub {
|
|
|
|
|
owner = "c-koi";
|
|
|
|
|
repo = "gmic-qt";
|
|
|
|
|
rev = "v.${version}";
|
2022-01-19 23:45:15 +00:00
|
|
|
|
sha256 = "nENXumOArRAHENqnBUjM7m+I5hf/WAFTVfm6cJgnv+0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
cmake
|
2021-02-05 17:12:51 +00:00
|
|
|
|
pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
|
qtbase
|
|
|
|
|
qttools
|
|
|
|
|
fftw
|
|
|
|
|
zlib
|
|
|
|
|
libjpeg
|
|
|
|
|
libtiff
|
|
|
|
|
libpng
|
|
|
|
|
opencv3
|
|
|
|
|
openexr
|
|
|
|
|
graphicsmagick
|
|
|
|
|
curl
|
|
|
|
|
] ++ variants.${variant}.extraDeps or [];
|
|
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
|
"-DGMIC_QT_HOST=${if variant == "standalone" then "none" else variant}"
|
|
|
|
|
];
|
|
|
|
|
|
2022-01-19 23:45:15 +00:00
|
|
|
|
unpackPhase = ''
|
|
|
|
|
cp -r ${gmic} gmic
|
|
|
|
|
ln -s ${gmic-community} gmic-community
|
|
|
|
|
cp -r ${gmic_qt} gmic_qt
|
|
|
|
|
chmod -R +w gmic gmic_qt
|
|
|
|
|
ln -s ${CImg} CImg
|
|
|
|
|
|
|
|
|
|
cp ${gmic_stdlib} gmic/src/gmic_stdlib.h
|
|
|
|
|
|
|
|
|
|
cd gmic_qt
|
|
|
|
|
'';
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
postFixup = lib.optionalString (variant == "gimp") ''
|
2022-01-19 23:45:15 +00:00
|
|
|
|
echo "wrapping $out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt"
|
|
|
|
|
wrapQtApp "$out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2022-01-19 23:45:15 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
updateScript = writeShellScript "${pname}-update-script" ''
|
|
|
|
|
set -o errexit
|
|
|
|
|
PATH=${lib.makeBinPath [ common-updater-scripts curl gnugrep gnused coreutils jq ]}
|
|
|
|
|
|
|
|
|
|
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 [[ "${version}" = "$latestVersion" ]]; then
|
|
|
|
|
echo "The new version same as the old version."
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# gmic-community is not versioned so let’s just update to master.
|
|
|
|
|
communityLatestCommit=$(curl "https://api.github.com/repos/dtschump/gmic-community/commits/master")
|
|
|
|
|
communityLatestSha=$(echo "$communityLatestCommit" | jq .sha --raw-output)
|
|
|
|
|
communityLatestDate=$(echo "$communityLatestCommit" | jq .commit.committer.date --raw-output | sed 's/T.\+//')
|
|
|
|
|
update-source-version --source-key=gmic-community "gmic-qt" "unstable-$communityLatestDate" --rev="$communityLatestSha"
|
|
|
|
|
|
|
|
|
|
for component in CImg gmic_stdlib gmic gmic_qt; do
|
|
|
|
|
# The script will not perform an update when the version attribute is up to date from previous platform run
|
|
|
|
|
# We need to clear it before each run
|
|
|
|
|
update-source-version "--source-key=$component" "gmic-qt" 0 "$(printf '0%.0s' {1..64})"
|
|
|
|
|
update-source-version "--source-key=$component" "gmic-qt" $latestVersion
|
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
meta = with lib; {
|
|
|
|
|
description = variants.${variant}.description;
|
|
|
|
|
homepage = "http://gmic.eu/";
|
2022-01-19 23:45:15 +00:00
|
|
|
|
license = licenses.gpl3Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
};
|
|
|
|
|
}
|