2019-06-16 12:59:06 -07:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, which, gnuplot
|
2017-04-07 15:11:14 -07:00
|
|
|
, giflib, libjpeg, libpng, libtiff, libwebp, openjpeg, zlib
|
|
|
|
}:
|
2011-04-24 11:16:51 -07:00
|
|
|
|
2017-04-07 15:11:14 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "leptonica-${version}";
|
2019-04-28 12:17:42 -07:00
|
|
|
version = "1.78.0";
|
2013-06-25 00:17:34 -07:00
|
|
|
|
2011-04-24 11:16:51 -07:00
|
|
|
src = fetchurl {
|
2017-04-07 15:11:14 -07:00
|
|
|
url = "http://www.leptonica.org/source/${name}.tar.gz";
|
2019-04-28 12:17:42 -07:00
|
|
|
sha256 = "122s9b8hi93va4lgwnwrbma50x5fp740npy0s92xybd2wy0jxvg2";
|
2011-04-24 11:16:51 -07:00
|
|
|
};
|
|
|
|
|
2017-04-07 15:11:14 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ giflib libjpeg libpng libtiff libwebp openjpeg zlib ];
|
2019-05-10 14:51:46 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
checkInputs = [ which gnuplot ];
|
2019-05-11 01:08:59 -07:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2011-04-24 11:16:51 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Image processing and analysis library";
|
|
|
|
homepage = http://www.leptonica.org/;
|
2019-05-10 14:51:46 -07:00
|
|
|
license = stdenv.lib.licenses.bsd2; # http://www.leptonica.org/about-the-license.html
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-04-24 11:16:51 -07:00
|
|
|
};
|
|
|
|
}
|