summary refs log tree commit diff
path: root/pkgs/applications/graphics/djview/default.nix
blob: 85388ffa6012d86f4ee66402e69f30f18540ab68 (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, djvulibre, qt4 }:

stdenv.mkDerivation {
	name = "djview4-4.1-2";
	src = fetchurl {
		url = mirror://sf/djvu/djview4-4.1-2.tar.gz;
		sha256 = "10k0h892kab3n8xypw6vsnvhwil410hvvqj375pwiss4vlm5isv1";
	};

	buildInputs = [djvulibre qt4];

  passthru = {
    mozillaPlugin = "/lib/netscape/plugins";
  };

	meta = {
		homepage = http://djvu.sourceforge.net/djview4.html;
		description = "A new portable DjVu viewer and browser plugin";
		license = "GPL2";
    inherit (qt4.meta) platforms;
    maintainers = [ stdenv.lib.maintainers.urkud ];
	};
}