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
+11
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;
}