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

33 lines
898 B
Nix
Raw Normal View History

2017-04-24 13:16:51 +01:00
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
pname = "cimg";
2020-03-06 07:28:31 +00:00
version = "2.8.4";
src = fetchurl {
2016-04-24 16:39:36 +01:00
url = "http://cimg.eu/files/CImg_${version}.zip";
2020-03-06 07:28:31 +00:00
sha256 = "1y4j2dmk4nnc5rx65c2px7r0nfq5117pmqpvi7klp9wmgcjs29gf";
};
2017-03-12 02:50:59 +00:00
nativeBuildInputs = [ unzip ];
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-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;
};
}