depot/third_party/nixpkgs/pkgs/by-name/ci/cimg/package.nix
Default email ae2dc6aea6 Project import generated by Copybara.
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
2024-10-11 07:15:48 +02:00

53 lines
1.4 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, gmic
, gmic-qt
}:
stdenv.mkDerivation (finalAttrs: {
pname = "cimg";
version = "3.4.3";
src = fetchFromGitHub {
owner = "GreycLab";
repo = "CImg";
rev = "refs/tags/v.${finalAttrs.version}";
hash = "sha256-Abe7mSbdj06MossUQXCKZPzzfyvJyRVeLfzINYNPv4g=";
};
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 plugins/* $out/include/CImg/plugins/
cp -dr --no-preserve=ownership examples/* $doc/share/doc/cimg/examples/
cp README.txt $doc/share/doc/cimg/
runHook postInstall
'';
passthru.tests = {
# Needs to update them all in lockstep.
inherit gmic gmic-qt;
};
meta = {
homepage = "http://cimg.eu/";
description = "Small, open source, C++ toolkit for image processing";
longDescription = ''
CImg stands for Cool Image. It is easy to use, efficient and is intended
to be a very pleasant toolbox to design image processing algorithms in
C++. Due to its generic conception, it can cover a wide range of image
processing applications.
'';
license = lib.licenses.cecill-c;
maintainers = [
lib.maintainers.AndersonTorres
];
platforms = lib.platforms.unix;
};
})