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

28 lines
605 B
Nix
Raw Normal View History

{ stdenv, fetchurl
, unzip }:
stdenv.mkDerivation rec {
name = "cimg-${version}";
2017-03-11 18:50:59 -08:00
version = "1.7.9";
src = fetchurl {
2016-04-24 08:39:36 -07:00
url = "http://cimg.eu/files/CImg_${version}.zip";
2017-03-11 18:50:59 -08:00
sha256 = "07g81jn25y2wksg9ycf9a7f5bfpcdl3xbrkp1xy3czl043a00y7s";
};
2017-03-11 18:50:59 -08:00
nativeBuildInputs = [ unzip ];
builder = ./builder.sh;
2016-04-24 08:39:36 -07:00
outputs = [ "out" "doc" ];
meta = with stdenv.lib; {
description = "A small, open source, C++ toolkit for image processing";
2016-04-24 08:39:36 -07:00
homepage = http://cimg.eu/;
license = licenses.cecill-c;
maintainers = [ maintainers.AndersonTorres ];
2015-04-07 10:04:14 -07:00
platforms = platforms.unix;
};
}