mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
cimg: 2.9.6 -> 2.9.7
This commit is contained in:
parent
2756b33d07
commit
963a8cfe25
@ -1,28 +1,33 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "cimg";
|
pname = "cimg";
|
||||||
version = "2.9.6";
|
version = "2.9.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dtschump";
|
owner = "dtschump";
|
||||||
repo = "CImg";
|
repo = "CImg";
|
||||||
rev = "v.${version}";
|
rev = "v.${version}";
|
||||||
sha256 = "sha256-RdOfog5FOw5XESyDFX68Lb2MUyCeUuPaq/0UVNTjNKo=";
|
sha256 = "sha256-cR2wvGtomT1cZh8wKMCfYDNuP3d1gKhHJavVnvuQ8Mc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
install -dm 755 $out/include/CImg/plugins $doc/share/doc/cimg/examples
|
install -dm 755 $out/include/CImg/plugins $doc/share/doc/cimg/examples
|
||||||
|
|
||||||
install -m 644 CImg.h $out/include/
|
install -m 644 CImg.h $out/include/
|
||||||
cp -dr --no-preserve=ownership examples/* $doc/share/doc/cimg/examples/
|
cp -dr --no-preserve=ownership examples/* $doc/share/doc/cimg/examples/
|
||||||
cp -dr --no-preserve=ownership plugins/* $out/include/CImg/plugins/
|
cp -dr --no-preserve=ownership plugins/* $out/include/CImg/plugins/
|
||||||
cp README.txt $doc/share/doc/cimg/
|
cp README.txt $doc/share/doc/cimg/
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
outputs = [ "out" "doc" ];
|
outputs = [ "out" "doc" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
homepage = "http://cimg.eu/";
|
||||||
description = "A small, open source, C++ toolkit for image processing";
|
description = "A small, open source, C++ toolkit for image processing";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
CImg stands for Cool Image. It is easy to use, efficient and is intended
|
CImg stands for Cool Image. It is easy to use, efficient and is intended
|
||||||
@ -30,7 +35,6 @@ stdenv.mkDerivation rec {
|
|||||||
C++. Due to its generic conception, it can cover a wide range of image
|
C++. Due to its generic conception, it can cover a wide range of image
|
||||||
processing applications.
|
processing applications.
|
||||||
'';
|
'';
|
||||||
homepage = "http://cimg.eu/";
|
|
||||||
license = licenses.cecill-c;
|
license = licenses.cecill-c;
|
||||||
maintainers = [ maintainers.AndersonTorres ];
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
Loading…
Reference in New Issue
Block a user