34 lines
907 B
Nix
34 lines
907 B
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cimg-${version}";
|
|
version = "1.7.9";
|
|
|
|
src = fetchurl {
|
|
url = "http://cimg.eu/files/CImg_${version}.zip";
|
|
sha256 = "07g81jn25y2wksg9ycf9a7f5bfpcdl3xbrkp1xy3czl043a00y7s";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|