nixpkgs/pkgs/development/libraries/cimg/default.nix

28 lines
599 B
Nix
Raw Normal View History

{ stdenv, fetchurl
, unzip }:
stdenv.mkDerivation rec {
name = "cimg-${version}";
2016-04-24 17:39:36 +02:00
version = "1.7.0";
src = fetchurl {
2016-04-24 17:39:36 +02:00
url = "http://cimg.eu/files/CImg_${version}.zip";
sha256 = "06j3n7gvgxzvprqwf56nnca195y38dcbdlszrxyn5p9w9al437zj";
};
2016-04-24 17:39:36 +02:00
buildInputs = [ unzip ];
builder = ./builder.sh;
2016-04-24 17:39:36 +02:00
outputs = [ "out" "doc" ];
meta = with stdenv.lib; {
description = "A small, open source, C++ toolkit for image processing";
2016-04-24 17:39:36 +02:00
homepage = http://cimg.eu/;
license = licenses.cecill-c;
maintainers = [ maintainers.AndersonTorres ];
2015-04-07 19:04:14 +02:00
platforms = platforms.unix;
};
}