nixpkgs/pkgs/development/libraries/cimg/default.nix
R. RyanTM 3b27d1c2c0 cimg: 2.6.5 -> 2.6.6
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/cimg/versions
2019-07-02 20:10:13 +02:00

34 lines
907 B
Nix

{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "cimg-${version}";
version = "2.6.6";
src = fetchurl {
url = "http://cimg.eu/files/CImg_${version}.zip";
sha256 = "06a6qgs7q79asfbfp615h5iin23y7g8y1achnmsp3rpkikssskzv";
};
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;
};
}