1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Added DjVuLibre

svn path=/nixpkgs/trunk/; revision=8938
This commit is contained in:
Michael Raskin 2007-07-01 20:11:32 +00:00
parent 68d6762e0f
commit c02cfe4fbe
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{stdenv, fetchurl,
qt, libX11, libjpeg, libtiff, libpng, ghostscript, zlib, libungif,
x11, mesa
}:
stdenv.mkDerivation {
name = "djvulibre-3.5.19";
src = fetchurl {
url = http://prdownloads.sourceforge.net/djvu/djvulibre-3.5.19.tar.gz;
sha256 = "0y6d9ka42llm7h64fc73s4wqcbxg31kallyfaarhkqsxyiaa3zsp";
};
buildInputs = [qt libX11 libjpeg libtiff libpng ghostscript zlib libungif
x11 mesa];
meta = {
description = "
DjVu libre - a library and a viewer for djvu format - compression for
scanned images.
";
};
}

View file

@ -2765,6 +2765,13 @@ rec {
inherit (gtkLibs) gtk glib;
};
djvulibre = import ../applications/misc/djvulibre {
inherit stdenv fetchurl libjpeg libtiff libungif zlib
ghostscript libpng x11 mesa;
qt = qt3;
inherit (xlibs) libX11;
};
eclipse = plugins :
import ../applications/editors/eclipse {
inherit fetchurl stdenv makeWrapper jdk;