summary refs log tree commit diff
path: root/pkgs/applications/graphics/djview/default.nix
blob: 0ac499f2681a2f077d50fbe7b8a1174968616857 (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
24
25
26
27
{stdenv, fetchurl, djvulibre, qt4, pkgconfig }:

stdenv.mkDerivation rec {
	name = "djview-4.8";
	src = fetchurl {
		url = "mirror://sourceforge/djvu/${name}.tar.gz";
		sha256 = "17y8jvbvj98h25qwsr93v24x75famv8d0jbb0h46xjj555y6wx4c";
	};

	buildInputs = [djvulibre qt4];

  buildNativeInputs = [ pkgconfig ];

  patches = [ ./djview4-qt-4.8.patch ];

  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 ];
	};
}