2014-08-09 13:13:21 -07:00
|
|
|
{ stdenv, fetchurl
|
2014-09-10 11:59:54 -07:00
|
|
|
, unzip }:
|
2014-08-09 13:13:21 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "cimg-${version}";
|
2017-03-11 18:50:59 -08:00
|
|
|
version = "1.7.9";
|
2014-08-09 13:13:21 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-24 08:39:36 -07:00
|
|
|
url = "http://cimg.eu/files/CImg_${version}.zip";
|
2017-03-11 18:50:59 -08:00
|
|
|
sha256 = "07g81jn25y2wksg9ycf9a7f5bfpcdl3xbrkp1xy3czl043a00y7s";
|
2014-08-09 13:13:21 -07:00
|
|
|
};
|
|
|
|
|
2017-03-11 18:50:59 -08:00
|
|
|
nativeBuildInputs = [ unzip ];
|
2014-08-09 13:13:21 -07:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
2016-04-24 08:39:36 -07:00
|
|
|
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2014-08-09 13:13:21 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A small, open source, C++ toolkit for image processing";
|
2016-04-24 08:39:36 -07:00
|
|
|
homepage = http://cimg.eu/;
|
2014-08-09 13:13:21 -07:00
|
|
|
license = licenses.cecill-c;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
2015-04-07 10:04:14 -07:00
|
|
|
platforms = platforms.unix;
|
2014-08-09 13:13:21 -07:00
|
|
|
};
|
|
|
|
}
|