2021-04-25 17:13:49 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2023-02-19 16:52:40 +00:00
|
|
|
, gmic
|
|
|
|
, gmic-qt
|
2021-04-25 17:13:49 +00:00
|
|
|
}:
|
2014-08-09 20:13:21 +00:00
|
|
|
|
2023-05-03 00:57:49 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "cimg";
|
2024-10-15 05:47:23 +00:00
|
|
|
version = "3.4.3";
|
2014-08-09 20:13:21 +00:00
|
|
|
|
2020-04-04 20:20:10 +00:00
|
|
|
src = fetchFromGitHub {
|
2023-03-17 17:54:20 +00:00
|
|
|
owner = "GreycLab";
|
2020-04-04 20:20:10 +00:00
|
|
|
repo = "CImg";
|
2024-06-16 08:20:19 +00:00
|
|
|
rev = "refs/tags/v.${finalAttrs.version}";
|
2024-10-15 05:47:23 +00:00
|
|
|
hash = "sha256-Abe7mSbdj06MossUQXCKZPzzfyvJyRVeLfzINYNPv4g=";
|
2014-08-09 20:13:21 +00:00
|
|
|
};
|
|
|
|
|
2021-10-15 18:30:43 +00:00
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2017-04-24 12:16:51 +00:00
|
|
|
installPhase = ''
|
2021-04-25 17:13:49 +00:00
|
|
|
runHook preInstall
|
2021-10-15 18:30:43 +00:00
|
|
|
|
2017-04-24 12:16:51 +00:00
|
|
|
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/
|
2022-01-03 20:08:43 +00:00
|
|
|
cp -dr --no-preserve=ownership examples/* $doc/share/doc/cimg/examples/
|
2017-04-24 12:16:51 +00:00
|
|
|
cp README.txt $doc/share/doc/cimg/
|
2021-10-15 18:30:43 +00:00
|
|
|
|
2021-04-25 17:13:49 +00:00
|
|
|
runHook postInstall
|
2017-04-24 12:16:51 +00:00
|
|
|
'';
|
2016-04-24 15:39:36 +00:00
|
|
|
|
2023-02-19 16:52:40 +00:00
|
|
|
passthru.tests = {
|
2023-05-03 00:57:49 +00:00
|
|
|
# Needs to update them all in lockstep.
|
2023-02-19 16:52:40 +00:00
|
|
|
inherit gmic gmic-qt;
|
|
|
|
};
|
|
|
|
|
2023-05-03 00:57:49 +00:00
|
|
|
meta = {
|
2021-04-25 17:13:49 +00:00
|
|
|
homepage = "http://cimg.eu/";
|
2014-08-09 20:13:21 +00:00
|
|
|
description = "Small, open source, C++ toolkit for image processing";
|
2020-04-04 20:20:10 +00:00
|
|
|
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.
|
|
|
|
'';
|
2023-05-03 00:57:49 +00:00
|
|
|
license = lib.licenses.cecill-c;
|
2024-11-29 00:11:36 +00:00
|
|
|
maintainers = [ ];
|
2023-05-03 00:57:49 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2014-08-09 20:13:21 +00:00
|
|
|
};
|
2023-05-03 00:57:49 +00:00
|
|
|
})
|