nixpkgs/pkgs/applications/misc/acrobat-reader/default.nix
Eelco Dolstra 1dbb681b29 * Acrobat Reader updated to 7.0.1. Also use the new patchelf to
remove the need for a wrapper script.

svn path=/nixpkgs/trunk/; revision=3996
2005-10-02 22:24:09 +00:00

14 lines
484 B
Nix

{stdenv, fetchurl, libXt, libXp, libXext, libX11, glib, pango, atk, gtk, libstdcpp5, zlib, patchelf}:
stdenv.mkDerivation {
name = "acrobat-reader-7.0.1";
builder = ./builder.sh;
src = fetchurl {
url = http://ardownload.adobe.com/pub/adobe/reader/unix/7x/7.0/enu/AdbeRdr701_linux_enu.tar.gz;
md5 = "79e5a40aca6b49f7015cb1694876f87a";
};
libPath = [libXt libXp libXext libX11 glib pango atk gtk libstdcpp5 zlib];
buildInputs = [patchelf]; /* !!! temporary */
}