Merge pull request #75237 from r-ryantm/auto-update/gmic

gmic: 2.7.5 -> 2.8.0
This commit is contained in:
Jan Tojnar 2020-05-26 02:43:58 +02:00 committed by GitHub
commit aa364b90d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
, fetchurl , fetchurl
, cmake , cmake
, ninja , ninja
, pkgconfig , pkg-config
, opencv3 , opencv3
, openexr , openexr
, graphicsmagick , graphicsmagick
@ -15,19 +15,19 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gmic"; pname = "gmic";
version = "2.7.5"; version = "2.9.0";
outputs = [ "out" "lib" "dev" "man" ]; outputs = [ "out" "lib" "dev" "man" ];
src = fetchurl { src = fetchurl {
url = "https://gmic.eu/files/source/gmic_${version}.tar.gz"; url = "https://gmic.eu/files/source/gmic_${version}.tar.gz";
sha256 = "008lpjm3w5hzfccam6qf0rizdg3a9cqrizhr7vrpskmbr1j451d6"; sha256 = "YjNpX5snmZ3MfMOqdICw8ZK9RN6FIJCRo7S4plroxLU=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
ninja ninja
pkgconfig pkg-config
]; ];
buildInputs = [ buildInputs = [
@ -43,12 +43,13 @@ stdenv.mkDerivation rec {
cmakeFlags = [ cmakeFlags = [
"-DBUILD_LIB_STATIC=OFF" "-DBUILD_LIB_STATIC=OFF"
"-DENABLE_CURL=OFF"
"-DENABLE_DYNAMIC_LINKING=ON" "-DENABLE_DYNAMIC_LINKING=ON"
]; ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Open and full-featured framework for image processing"; description = "Open and full-featured framework for image processing";
homepage = "http://gmic.eu/"; homepage = "https://gmic.eu/";
license = licenses.cecill20; license = licenses.cecill20;
platforms = platforms.unix; platforms = platforms.unix;
}; };