1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/cimg/default.nix

33 lines
896 B
Nix
Raw Normal View History

2017-04-24 13:16:51 +01:00
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
pname = "cimg";
2019-11-01 20:06:35 +00:00
version = "2.7.5";
src = fetchurl {
2016-04-24 16:39:36 +01:00
url = "http://cimg.eu/files/CImg_${version}.zip";
2019-11-01 20:06:35 +00:00
sha256 = "1xhs0j7mfiln9apfcc9cd3cmjj1prm211vih2zn2qi87ialv36cg";
};
2017-03-12 02:50:59 +00:00
nativeBuildInputs = [ unzip ];
2017-04-24 13:16:51 +01:00
installPhase = ''
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/
'';
2016-04-24 16:39:36 +01:00
outputs = [ "out" "doc" ];
meta = with stdenv.lib; {
description = "A small, open source, C++ toolkit for image processing";
2016-04-24 16:39:36 +01:00
homepage = http://cimg.eu/;
license = licenses.cecill-c;
maintainers = [ maintainers.AndersonTorres ];
2015-04-07 18:04:14 +01:00
platforms = platforms.unix;
};
}