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

20 lines
524 B
Nix
Raw Normal View History

{stdenv, fetchurl, libpng, libtiff, libjpeg, zlib}:
stdenv.mkDerivation {
2013-12-18 15:19:08 +00:00
name = "leptonica-1.69";
2013-06-25 07:17:34 +00:00
src = fetchurl {
2013-12-18 15:19:08 +00:00
url = http://www.leptonica.org/source/leptonica-1.69.tar.gz;
sha256 = "0bd7w0zpmwwfn1cnrlyzjw3jf8x59r0rhdmvk7rigr57rnfnddry";
};
buildInputs = [ libpng libtiff libjpeg zlib ];
meta = {
description = "Image processing and analysis library";
homepage = http://www.leptonica.org/;
# Its own license: http://www.leptonica.org/about-the-license.html
license = "free";
};
}