summary refs log tree commit diff
path: root/pkgs/applications/misc/djvulibre/default.nix
blob: 611f6f08909a5984d681b421db78e672651ec91c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{stdenv, fetchurl,
qt, libX11, libjpeg, libtiff, libpng, ghostscript, zlib, libungif,
x11, mesa
}:
stdenv.mkDerivation {
  name = "djvulibre-3.5.19";

  src = fetchurl {
    url = mirror://sourceforge/djvu/djvulibre-3.5.19.tar.gz;
    sha256 = "0y6d9ka42llm7h64fc73s4wqcbxg31kallyfaarhkqsxyiaa3zsp";
  };

  buildInputs = [qt libX11 libjpeg libtiff libpng ghostscript zlib libungif
	x11 mesa];

  meta = {
    description = "
	DjVu libre - a library and a viewer for djvu format - compression for
	scanned images.
";
  };
}