3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/graphics/gmic-qt/default.nix

175 lines
4.6 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
2019-09-07 11:22:02 +01:00
, fetchurl
, variant ? "standalone"
2019-09-07 11:22:02 +01:00
, fetchFromGitHub
, cmake
, pkg-config
, opencv3
2019-09-07 11:22:02 +01:00
, openexr
, graphicsmagick
, fftw
, zlib
, libjpeg
, libtiff
, libpng
, curl
, krita ? null
, gimp ? null
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}"}";
2019-09-07 15:53:01 +01:00
version = "2.7.1";
2018-09-27 18:28:23 +01:00
2018-09-27 21:41:26 +01:00
gmic-community = fetchFromGitHub {
owner = "dtschump";
repo = "gmic-community";
rev = "3fd528f20a2a7d651e96078c205ff21efb9cdd1a";
sha256 = "08d37b49qgh5d4rds7hvr5wjj4p1y8cnbidz1cyqsibq0555pwq2";
};
CImg = fetchFromGitHub {
2019-09-07 15:53:01 +01:00
owner = "dtschump";
repo = "CImg";
rev = "v.${version}";
sha256 = "1mfkjvf5r3ppc1dd6yvqn7xlhgzfg9k1k5v2sq2k9m70g8p7rgpd";
2018-09-27 21:41:26 +01:00
};
gmic_stdlib = fetchurl {
name = "gmic_stdlib.h";
2019-09-07 15:53:01 +01:00
url = "http://gmic.eu/gmic_stdlib${lib.replaceStrings ["."] [""] version}.h";
sha256 = "0v12smknr1s44s6wq2gbnw0hb98xrwp6i3zg9wf49cl7s9qf76j3";
2018-09-27 21:41:26 +01:00
};
2018-09-27 18:28:23 +01:00
2018-09-27 21:41:26 +01:00
gmic = fetchFromGitHub {
owner = "dtschump";
repo = "gmic";
2018-09-28 13:01:44 +01:00
rev = "v.${version}";
2019-09-07 15:53:01 +01:00
sha256 = "0pa6kflr1gqgzh8rk7bylvkxs989r5jy0q7b62mnzx8895slwfb5";
2018-09-27 21:41:26 +01:00
};
gmic_qt = fetchFromGitHub {
owner = "c-koi";
repo = "gmic-qt";
2018-09-28 13:01:44 +01:00
rev = "v.${version}";
2019-09-07 15:53:01 +01:00
sha256 = "08a0660083wv5fb1w9qqhm4f8cfwbqq723qzqq647mid1n7sy959";
2018-09-27 21:41:26 +01:00
};
2018-09-27 18:28:23 +01:00
patches = [
# Install GIMP plug-in to a correct destination
# https://github.com/c-koi/gmic-qt/pull/78
./fix-gimp-plugin-path.patch
];
2019-09-07 11:22:02 +01:00
nativeBuildInputs = [
cmake
pkg-config
2019-09-07 11:22:02 +01:00
];
2018-09-27 18:28:23 +01:00
buildInputs = [
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}"
2019-09-07 11:22:02 +01:00
];
2018-09-27 18:28:23 +01: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
'';
postFixup = lib.optionalString (variant == "gimp") ''
echo "wrapping $out/${gimp.targetPluginDir}/gmic_gimp_qt"
wrapQtApp "$out/${gimp.targetPluginDir}/gmic_gimp_qt"
2018-09-27 18:28:23 +01: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 lets 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
'';
};
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;
};
}