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

39 lines
1.2 KiB
Nix
Raw Normal View History

2020-04-04 22:20:10 +02:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "cimg";
2020-06-15 18:02:21 +02:00
version = "2.9.1";
2020-04-04 22:20:10 +02:00
src = fetchFromGitHub {
owner = "dtschump";
repo = "CImg";
rev = "v.${version}";
2020-06-15 18:02:21 +02:00
sha256 = "0vl7dscbms4834gm1000sp17pr714pbqwicn40pbl85mxr3pnjp3";
};
2017-04-24 14:16:51 +02: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 17:39:36 +02:00
outputs = [ "out" "doc" ];
meta = with stdenv.lib; {
description = "A small, open source, C++ toolkit for image processing";
2020-04-04 22:20:10 +02: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 08:28:31 +01:00
homepage = "http://cimg.eu/";
license = licenses.cecill-c;
maintainers = [ maintainers.AndersonTorres ];
2015-04-07 19:04:14 +02:00
platforms = platforms.unix;
};
}