2017-04-24 13:16:51 +01:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
2014-08-09 21:13:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "cimg-${version}";
|
2019-08-04 04:45:40 +01:00
|
|
|
version = "2.6.7";
|
2014-08-09 21:13:21 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-24 16:39:36 +01:00
|
|
|
url = "http://cimg.eu/files/CImg_${version}.zip";
|
2019-08-04 04:45:40 +01:00
|
|
|
sha256 = "1jjsyq6ljpprak8l76aym1p28j9y7djxl73pdh1kpkw85ac23h6m";
|
2014-08-09 21:13:21 +01:00
|
|
|
};
|
|
|
|
|
2017-03-12 02:50:59 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
2014-08-09 21:13:21 +01:00
|
|
|
|
2017-04-24 13:16:51 +01:00
|
|
|
installPhase = ''
|
|
|
|
install -dm 755 $out/include/CImg/plugins $doc/share/doc/cimg/examples
|
|
|
|
|
|
|
|
install -m 644 CImg.h $out/include/
|
|
|
|
cp -dr --no-preserve=ownership examples/* $doc/share/doc/cimg/examples/
|
|
|
|
cp -dr --no-preserve=ownership plugins/* $out/include/CImg/plugins/
|
|
|
|
cp README.txt $doc/share/doc/cimg/
|
|
|
|
'';
|
2016-04-24 16:39:36 +01:00
|
|
|
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2014-08-09 21:13:21 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A small, open source, C++ toolkit for image processing";
|
2016-04-24 16:39:36 +01:00
|
|
|
homepage = http://cimg.eu/;
|
2014-08-09 21:13:21 +01:00
|
|
|
license = licenses.cecill-c;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
2015-04-07 18:04:14 +01:00
|
|
|
platforms = platforms.unix;
|
2014-08-09 21:13:21 +01:00
|
|
|
};
|
|
|
|
}
|