cimg: 2.9.8 -> 2.9.9

This commit is contained in:
AndersonTorres 2021-10-15 15:30:43 -03:00
parent e242eef8a4
commit 48b8604bbe

View File

@ -5,27 +5,29 @@
stdenv.mkDerivation rec {
pname = "cimg";
version = "2.9.8";
version = "2.9.9";
src = fetchFromGitHub {
owner = "dtschump";
repo = "CImg";
rev = "v.${version}";
sha256 = "sha256-nEICs1oAIXu6/5O4R3mbwig1OY+HDIWWeQjrcYnCwT0=";
hash = "sha256-DWyqVN7v+j2XCArv4jmrD45XKWMNhd2DddJHH3gQWQY=";
};
outputs = [ "out" "doc" ];
installPhase = ''
runHook preInstall
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/
runHook postInstall
'';
outputs = [ "out" "doc" ];
meta = with lib; {
homepage = "http://cimg.eu/";
description = "A small, open source, C++ toolkit for image processing";