summary refs log tree commit diff
path: root/pkgs/applications/misc/djvulibre/default.nix
blob: b1001976ea0428d36e7adb4ed26b6ea99b66ae2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, lib, useQt3 ? false, libjpeg, libtiff, libpng, ghostscript
, libungif, zlib, x11, libX11, mesa, qt3 }:

stdenv.mkDerivation rec {
  name = "djvulibre-3.5.24";

  src = fetchurl {
    url = "mirror://sourceforge/djvu/${name}.tar.gz";
    sha256 = "0d1592cmc7scg2jzah47mnvbqldhxb1x9vxm7y64a3iasa0lqwy0";
  };

  buildInputs = [ libjpeg libtiff libpng ghostscript zlib libungif ] ++
    stdenv.lib.optionals useQt3 [qt3 libX11 x11 mesa];

  meta = {
    description = "A library and viewer for the DJVU file format for scanned images";
    homepage = http://djvu.sourceforge.net;
    maintainers = [ lib.maintainers.urkud ];
  };
}