svn path=/nixpkgs/trunk/; revision=4311
This commit is contained in:
Armijn Hemel 2005-11-27 21:06:08 +00:00
parent 31c615a95d
commit f880e6e099
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,5 @@
source $stdenv/setup
configureFlags="--x-includes=$libX11/include --x-libraries=$libX11/lib"
genericBuild

View File

@ -0,0 +1,11 @@
{stdenv, fetchurl, libX11}:
stdenv.mkDerivation {
name = "xpdf-3.01";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.01.tar.gz;
md5 = "e004c69c7dddef165d768b1362b44268";
};
inherit libX11;
}

View File

@ -1753,6 +1753,11 @@ rec {
inherit fetchurl stdenv wxGTK chmlib;
};
xpdf = (import ../applications/misc/xpdf) {
inherit fetchurl stdenv;
inherit (xlibs) libX11;
};
acroread = (import ../applications/misc/acrobat-reader) {
inherit fetchurl stdenv zlib;
inherit (xlibs) libXt libXp libXext libX11 libXinerama;