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

33 lines
896 B
Nix
Raw Normal View History

2017-04-24 14:16:51 +02:00
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
pname = "cimg";
2019-09-07 15:59:34 +02:00
version = "2.7.1";
src = fetchurl {
2016-04-24 17:39:36 +02:00
url = "http://cimg.eu/files/CImg_${version}.zip";
2019-09-07 15:59:34 +02:00
sha256 = "1lw1hjk65zyd5x9w113yrqyy8db45jdzzkqslkipaiskl9f81y9z";
};
2017-03-12 03:50:59 +01:00
nativeBuildInputs = [ unzip ];
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";
2016-04-24 17:39:36 +02:00
homepage = http://cimg.eu/;
license = licenses.cecill-c;
maintainers = [ maintainers.AndersonTorres ];
2015-04-07 19:04:14 +02:00
platforms = platforms.unix;
};
}