33 lines
896 B
Nix
33 lines
896 B
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cimg";
|
|
version = "2.8.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://cimg.eu/files/CImg_${version}.zip";
|
|
sha256 = "0k7cra95v46i1q3rvklrxxhz3z10yql1ysvfrapcas0m4z6f94ld";
|
|
};
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
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/
|
|
'';
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A small, open source, C++ toolkit for image processing";
|
|
homepage = http://cimg.eu/;
|
|
license = licenses.cecill-c;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|