Merge pull request #84275 from AndersonTorres/update-cimg

cimg: 2.8.4 -> 2.9.0
This commit is contained in:
Anderson Torres 2020-04-15 00:38:56 -03:00 committed by GitHub
commit ee0929b0ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +1,16 @@
{ stdenv, fetchurl, unzip }:
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "cimg";
version = "2.8.4";
version = "2.9.0";
src = fetchurl {
url = "http://cimg.eu/files/CImg_${version}.zip";
sha256 = "1y4j2dmk4nnc5rx65c2px7r0nfq5117pmqpvi7klp9wmgcjs29gf";
src = fetchFromGitHub {
owner = "dtschump";
repo = "CImg";
rev = "v.${version}";
sha256 = "1x43c1w2kzr6h3j7y3kwiwb7nba0iymck6bq9psvp53mh9xxrfd1";
};
nativeBuildInputs = [ unzip ];
installPhase = ''
install -dm 755 $out/include/CImg/plugins $doc/share/doc/cimg/examples
@ -24,6 +24,12 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A small, open source, C++ toolkit for image processing";
longDescription = ''
CImg stands for Cool Image. It is easy to use, efficient and is intended
to be a very pleasant toolbox to design image processing algorithms in
C++. Due to its generic conception, it can cover a wide range of image
processing applications.
'';
homepage = "http://cimg.eu/";
license = licenses.cecill-c;
maintainers = [ maintainers.AndersonTorres ];