1dbb681b29
remove the need for a wrapper script. svn path=/nixpkgs/trunk/; revision=3996
14 lines
484 B
Nix
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 */
|
|
}
|