Adding 'mupdf', a lightweight PDF 1.7 viewer

As a side effect, I add openjpeg and jbig2dec.

svn path=/nixpkgs/trunk/; revision=23069
This commit is contained in:
Lluís Batlle i Rossell
2010-08-09 20:59:38 +00:00
parent 093980344d
commit 1b59ae0b83
4 changed files with 71 additions and 0 deletions
@@ -0,0 +1,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "jbig2dec-0.11";
src = fetchurl {
url = http://ghostscript.com/~giles/jbig2/jbig2dec/jbig2dec-0.11.tar.gz;
sha256 = "1ffhgmf2fqzk0h4k736pp06z7q5y4x41fg844bd6a9vgncq86bby";
};
meta = {
homepage = http://jbig2dec.sourceforge.net/;
description = "Decoder implementation of the JBIG2 image compression format";
license = "GPLv2+";
};
}