Merge pull request #75237 from r-ryantm/auto-update/gmic
gmic: 2.7.5 -> 2.8.0
This commit is contained in:
commit
aa364b90d4
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue