2021-04-25 18:13:49 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2014-08-09 21:13:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cimg";
|
2021-10-15 19:30:43 +01:00
|
|
|
version = "2.9.9";
|
2014-08-09 21:13:21 +01:00
|
|
|
|
2020-04-04 21:20:10 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dtschump";
|
|
|
|
repo = "CImg";
|
|
|
|
rev = "v.${version}";
|
2021-10-15 19:30:43 +01:00
|
|
|
hash = "sha256-DWyqVN7v+j2XCArv4jmrD45XKWMNhd2DddJHH3gQWQY=";
|
2014-08-09 21:13:21 +01:00
|
|
|
};
|
|
|
|
|
2021-10-15 19:30:43 +01:00
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2017-04-24 13:16:51 +01:00
|
|
|
installPhase = ''
|
2021-04-25 18:13:49 +01:00
|
|
|
runHook preInstall
|
2021-10-15 19:30:43 +01:00
|
|
|
|
2017-04-24 13:16:51 +01:00
|
|
|
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/
|
2021-10-15 19:30:43 +01:00
|
|
|
|
2021-04-25 18:13:49 +01:00
|
|
|
runHook postInstall
|
2017-04-24 13:16:51 +01:00
|
|
|
'';
|
2016-04-24 16:39:36 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2021-04-25 18:13:49 +01:00
|
|
|
homepage = "http://cimg.eu/";
|
2014-08-09 21:13:21 +01:00
|
|
|
description = "A small, open source, C++ toolkit for image processing";
|
2020-04-04 21:20:10 +01:00
|
|
|
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.
|
|
|
|
'';
|
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
|
|
|
};
|
|
|
|
}
|