aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-05-25 16:11:30 +0200
committerJan Tojnar <jtojnar@gmail.com>2020-05-25 16:11:30 +0200
commit46a135217e74b3a8b7bcfab16a79a2ccacac274e (patch)
tree941513223cc9886f3fcc96cb604291b8ffc1c76e /pkgs/tools/graphics
parent0f5ce2fac0c726036ca69a5524c59a49e2973dd4 (diff)
gmic: 2.7.5 -> 2.9.0
* https://discuss.pixls.us/t/release-of-gmic-2-8/14644 * https://discuss.pixls.us/t/release-of-gmic-2-9/16755
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/gmic/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/tools/graphics/gmic/default.nix b/pkgs/tools/graphics/gmic/default.nix
index f4be95556c8f..42b0e5afef7e 100644
--- a/pkgs/tools/graphics/gmic/default.nix
+++ b/pkgs/tools/graphics/gmic/default.nix
@@ -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;
};