Merge pull request #179646 from jtojnar/gmic-qt-system
gmic-qt: Use system gmic
This commit is contained in:
commit
c03f82e558
3 changed files with 72 additions and 75 deletions
|
@ -5,13 +5,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "cimg";
|
pname = "cimg";
|
||||||
version = "3.0.2";
|
version = "3.1.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dtschump";
|
owner = "dtschump";
|
||||||
repo = "CImg";
|
repo = "CImg";
|
||||||
rev = "v.${version}";
|
rev = "v.${version}";
|
||||||
hash = "sha256-OWpztnyVXCg+uoAb6e/2eUK2ebBalDlz6Qcjf17IeMk=";
|
hash = "sha256-nHYRs8X8I0B76SlgqWez3qubrsG7iBfa0I/G78v7H8g=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "doc" ];
|
outputs = [ "out" "doc" ];
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{ lib
|
{ lib
|
||||||
, mkDerivation
|
, mkDerivation
|
||||||
, fetchurl
|
|
||||||
, variant ? "standalone"
|
, variant ? "standalone"
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, cmake
|
, cmake
|
||||||
, pkg-config
|
, pkg-config
|
||||||
|
, ninja
|
||||||
, opencv3
|
, opencv3
|
||||||
, openexr
|
, openexr
|
||||||
, graphicsmagick
|
, graphicsmagick
|
||||||
|
@ -16,6 +16,8 @@
|
||||||
, curl
|
, curl
|
||||||
, krita ? null
|
, krita ? null
|
||||||
, gimp ? null
|
, gimp ? null
|
||||||
|
, gmic
|
||||||
|
, cimg
|
||||||
, qtbase
|
, qtbase
|
||||||
, qttools
|
, qttools
|
||||||
, writeShellScript
|
, writeShellScript
|
||||||
|
@ -56,48 +58,24 @@ assert lib.assertMsg (builtins.all (d: d != null) variants.${variant}.extraDeps
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}";
|
pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}";
|
||||||
version = "3.0.0";
|
version = "3.1.5";
|
||||||
|
|
||||||
gmic-community = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dtschump";
|
|
||||||
repo = "gmic-community";
|
|
||||||
rev = "df23b08bc52767762f0e38d040cd8ffeea4b865e";
|
|
||||||
sha256 = "euk5RsFPBgx2czAukPRdi/O4ahgXO8J8VJdiGHNge5M=";
|
|
||||||
};
|
|
||||||
|
|
||||||
CImg = fetchFromGitHub {
|
|
||||||
owner = "dtschump";
|
|
||||||
repo = "CImg";
|
|
||||||
rev = "v.${version}";
|
|
||||||
sha256 = "dC4VuWTz0uyFxLjBQ+2ggndHaCErcoI7tJMfkqbWmeg=";
|
|
||||||
};
|
|
||||||
|
|
||||||
gmic_stdlib = fetchurl {
|
|
||||||
name = "gmic_stdlib.h";
|
|
||||||
url = "http://gmic.eu/gmic_stdlib${lib.replaceStrings ["."] [""] version}.h";
|
|
||||||
sha256 = "CAYSxw5NCmE29hie1/J1csBcdQvIrmZ/+mNMl0sLLGI=";
|
|
||||||
};
|
|
||||||
|
|
||||||
gmic = fetchFromGitHub {
|
|
||||||
owner = "dtschump";
|
|
||||||
repo = "gmic";
|
|
||||||
rev = "v.${version}";
|
|
||||||
sha256 = "PyeJmjOqjbHlZ1Xl3IpoOD6oZEcUrHNHqF7Ft1RZDL4=";
|
|
||||||
};
|
|
||||||
|
|
||||||
gmic_qt = fetchFromGitHub {
|
|
||||||
owner = "c-koi";
|
owner = "c-koi";
|
||||||
repo = "gmic-qt";
|
repo = "gmic-qt";
|
||||||
rev = "v.${version}";
|
rev = "v.${version}";
|
||||||
sha256 = "nENXumOArRAHENqnBUjM7m+I5hf/WAFTVfm6cJgnv+0=";
|
sha256 = "rSBdh6jhiVZogZADEKn3g7bkGPnWWOEnRF0jNCe1BCk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cmake
|
cmake
|
||||||
pkg-config
|
pkg-config
|
||||||
|
ninja
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
gmic
|
||||||
|
cimg
|
||||||
qtbase
|
qtbase
|
||||||
qttools
|
qttools
|
||||||
fftw
|
fftw
|
||||||
|
@ -113,18 +91,13 @@ mkDerivation rec {
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DGMIC_QT_HOST=${if variant == "standalone" then "none" else variant}"
|
"-DGMIC_QT_HOST=${if variant == "standalone" then "none" else variant}"
|
||||||
|
"-DENABLE_SYSTEM_GMIC:BOOL=ON"
|
||||||
];
|
];
|
||||||
|
|
||||||
unpackPhase = ''
|
postPatch = ''
|
||||||
cp -r ${gmic} gmic
|
patchShebangs \
|
||||||
ln -s ${gmic-community} gmic-community
|
translations/filters/csv2ts.sh \
|
||||||
cp -r ${gmic_qt} gmic_qt
|
translations/lrelease.sh
|
||||||
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") ''
|
postFixup = lib.optionalString (variant == "gimp") ''
|
||||||
|
@ -132,33 +105,6 @@ mkDerivation rec {
|
||||||
wrapQtApp "$out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt"
|
wrapQtApp "$out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
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
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = variants.${variant}.description;
|
description = variants.${variant}.description;
|
||||||
homepage = "http://gmic.eu/";
|
homepage = "http://gmic.eu/";
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
{ lib, stdenv
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, cmake
|
, cmake
|
||||||
, ninja
|
, ninja
|
||||||
|
@ -6,22 +8,40 @@
|
||||||
, opencv
|
, opencv
|
||||||
, openexr
|
, openexr
|
||||||
, graphicsmagick
|
, graphicsmagick
|
||||||
|
, cimg
|
||||||
, fftw
|
, fftw
|
||||||
, zlib
|
, zlib
|
||||||
, libjpeg
|
, libjpeg
|
||||||
, libtiff
|
, libtiff
|
||||||
, libpng
|
, libpng
|
||||||
|
, writeShellScript
|
||||||
|
, common-updater-scripts
|
||||||
|
, curl
|
||||||
|
, gnugrep
|
||||||
|
, gnused
|
||||||
|
, coreutils
|
||||||
|
, jq
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gmic";
|
pname = "gmic";
|
||||||
version = "3.0.0";
|
version = "3.1.5";
|
||||||
|
|
||||||
outputs = [ "out" "lib" "dev" "man" ];
|
outputs = [ "out" "lib" "dev" "man" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://gmic.eu/files/source/gmic_${version}.tar.gz";
|
owner = "dtschump";
|
||||||
sha256 = "sha256-PwVruebb8GdK9Mjc5Z9BmBchh2Yvf7s2zGPryMG3ESA=";
|
repo = "gmic";
|
||||||
|
rev = "326ea9b7dc320b3624fe660d7b7d81669ca12e6d";
|
||||||
|
sha256 = "RRCzYMN/IXViiUNnacJV3DNpku3hIHQkHbIrtixExT0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
# TODO: build this from source
|
||||||
|
# https://github.com/dtschump/gmic/blob/b36b2428db5926af5eea5454f822f369c2d9907e/src/Makefile#L675-L729
|
||||||
|
gmic_stdlib = fetchurl {
|
||||||
|
name = "gmic_stdlib.h";
|
||||||
|
url = "http://gmic.eu/gmic_stdlib${lib.replaceStrings ["."] [""] version}.h";
|
||||||
|
sha256 = "FM8RscCrt6jYlwVB2DtpqYrh9B3pO0I6Y69tkf9W1/o=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -31,6 +51,7 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
cimg
|
||||||
fftw
|
fftw
|
||||||
zlib
|
zlib
|
||||||
libjpeg
|
libjpeg
|
||||||
|
@ -45,8 +66,38 @@ stdenv.mkDerivation rec {
|
||||||
"-DBUILD_LIB_STATIC=OFF"
|
"-DBUILD_LIB_STATIC=OFF"
|
||||||
"-DENABLE_CURL=OFF"
|
"-DENABLE_CURL=OFF"
|
||||||
"-DENABLE_DYNAMIC_LINKING=ON"
|
"-DENABLE_DYNAMIC_LINKING=ON"
|
||||||
|
"-DUSE_SYSTEM_CIMG=ON"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# TODO: build from source
|
||||||
|
cp -r ${gmic_stdlib} src/gmic_stdlib.h
|
||||||
|
|
||||||
|
# CMake build files were moved to subdirectory.
|
||||||
|
mv resources/CMakeLists.txt resources/cmake .
|
||||||
|
'';
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
for component in src gmic_stdlib; 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" 0 "$(printf '0%.0s' {1..64})"
|
||||||
|
update-source-version "--source-key=$component" "gmic" $latestVersion
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Open and full-featured framework for image processing";
|
description = "Open and full-featured framework for image processing";
|
||||||
homepage = "https://gmic.eu/";
|
homepage = "https://gmic.eu/";
|
||||||
|
|
Loading…
Reference in a new issue