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

45 lines
1.2 KiB
Nix
Raw Normal View History

2021-04-25 18:13:49 +01:00
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "cimg";
2021-10-15 19:30:43 +01:00
version = "2.9.9";
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=";
};
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
meta = with lib; {
2021-04-25 18:13:49 +01:00
homepage = "http://cimg.eu/";
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.
'';
license = licenses.cecill-c;
maintainers = [ maintainers.AndersonTorres ];
2015-04-07 18:04:14 +01:00
platforms = platforms.unix;
};
}