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