18439774f8
svn path=/nixpkgs/trunk/; revision=17799
27 lines
795 B
Nix
27 lines
795 B
Nix
{ stdenv, fetchurl, libX11, cups, glib, pango, atk, gtk, zlib, libxml2 }:
|
|
|
|
assert stdenv.system == "i686-linux";
|
|
|
|
stdenv.mkDerivation {
|
|
name = "adobe-reader-9.2-1";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://ardownload.adobe.com/pub/adobe/reader/unix/9.x/9.2/enu/AdbeRdr9.2-1_i486linux_enu.tar.bz2;
|
|
sha256 = "0067w0kjj2c04342g8c9qvcs49kkiqlxn2zyx9qzlg7a32qfc9l2";
|
|
};
|
|
|
|
# !!! Adobe Reader contains copies of OpenSSL, libcurl, and libicu.
|
|
# We should probably remove those and use the regular Nixpkgs
|
|
# versions.
|
|
|
|
libPath = stdenv.lib.makeLibraryPath
|
|
[ stdenv.gcc.gcc libX11 glib pango atk gtk zlib libxml2 cups ];
|
|
|
|
meta = {
|
|
description = "Adobe Reader, a viewer for PDF documents";
|
|
homepage = http://www.adobe.com/products/reader;
|
|
};
|
|
}
|