nixpkgs/pkgs/development/libraries/cimg/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

2020-04-04 21:20:10 +01:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "cimg";
2020-11-27 12:11:36 +00:00
version = "2.9.4";
2020-04-04 21:20:10 +01:00
src = fetchFromGitHub {
owner = "dtschump";
repo = "CImg";
rev = "v.${version}";
2020-11-27 12:11:36 +00:00
sha256 = "1sb0z5ryh34y80ghlr2agsl64gayjmxpl96l9fjaylf5k2m3fg2b";
};
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" ];
meta = with stdenv.lib; {
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.
'';
2020-03-06 07:28:31 +00:00
homepage = "http://cimg.eu/";
license = licenses.cecill-c;
maintainers = [ maintainers.AndersonTorres ];
2015-04-07 18:04:14 +01:00
platforms = platforms.unix;
};
}