cimg 3.2.1 -> 3.2.2 https://repology.org/metapackage/cimg/versions attrpath: cimg Checking auto update branch... No auto update branch exists Old version 3.2.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , gmic , gmic-qt }: stdenv.mkDerivation rec { pname = "cimg"; version = "3.2.2"; src = fetchFromGitHub { owner = "GreycLab"; repo = "CImg"; rev = "v.${version}"; hash = "sha256-koXew0Lwb7wW8MQctTjxpo7TNVtrS5MzxQFfUS1gwZs="; }; 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 = { # Need to update in lockstep. inherit gmic gmic-qt; }; meta = with lib; { homepage = "http://cimg.eu/"; description = "A 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 = licenses.cecill-c; maintainers = [ maintainers.AndersonTorres maintainers.lilyinstarlight ]; platforms = platforms.unix; }; }