Merge pull request #84275 from AndersonTorres/update-cimg
cimg: 2.8.4 -> 2.9.0
This commit is contained in:
commit
ee0929b0ba
@ -1,16 +1,16 @@
|
|||||||
{ stdenv, fetchurl, unzip }:
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "cimg";
|
pname = "cimg";
|
||||||
version = "2.8.4";
|
version = "2.9.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://cimg.eu/files/CImg_${version}.zip";
|
owner = "dtschump";
|
||||||
sha256 = "1y4j2dmk4nnc5rx65c2px7r0nfq5117pmqpvi7klp9wmgcjs29gf";
|
repo = "CImg";
|
||||||
|
rev = "v.${version}";
|
||||||
|
sha256 = "1x43c1w2kzr6h3j7y3kwiwb7nba0iymck6bq9psvp53mh9xxrfd1";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ unzip ];
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -dm 755 $out/include/CImg/plugins $doc/share/doc/cimg/examples
|
install -dm 755 $out/include/CImg/plugins $doc/share/doc/cimg/examples
|
||||||
|
|
||||||
@ -24,6 +24,12 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A small, open source, C++ toolkit for image processing";
|
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/";
|
homepage = "http://cimg.eu/";
|
||||||
license = licenses.cecill-c;
|
license = licenses.cecill-c;
|
||||||
maintainers = [ maintainers.AndersonTorres ];
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user