nixpkgs/pkgs/applications/misc/acrobat-reader/default.nix
Eelco Dolstra cb751bd5c0 * Adobe Reader 7.0. The PPKLite module (whatever that is) is disabled
because it needs the LDAP libraries, and I'm too lazy to add them
  now.

svn path=/nixpkgs/trunk/; revision=2457
2005-03-25 15:13:46 +00:00

13 lines
415 B
Nix

{stdenv, fetchurl, libXt, libXp, libXext, libX11, glib, pango, atk, gtk, libstdcpp5, zlib}:
stdenv.mkDerivation {
name = "acrobat-reader-7.0";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.adobe.com/pub/adobe/reader/unix/7x/7.0/enu/AdbeRdr70_linux_enu.tar.gz;
md5 = "f847ce21e5d871837f2dc1d2f1baf9a9";
};
libPath = [libXt libXp libXext libX11 glib pango atk gtk libstdcpp5 zlib];
}