summary refs log tree commit diff
path: root/pkgs/applications/graphics/djview/default.nix
blob: 06438cc45f97da152caaf422e59c4b50dbe4d397 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args: with args;

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

	buildInputs = [djvulibre qt4];

	meta = {
		homepage = http://djvu.sourceforge.net/djview4.html;
		description = "A new portable DjVu viewer and browser plugin";
		license = "GPL2";
	};
}