mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
* Added a description.
svn path=/nixpkgs/trunk/; revision=11509
This commit is contained in:
parent
144e3b4e9d
commit
bcb90548ab
1 changed files with 6 additions and 1 deletions
|
@ -8,18 +8,23 @@ assert stdenv.system == "i686-linux";
|
|||
|
||||
stdenv.mkDerivation {
|
||||
name = "acrobat-reader-7.0.9";
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://ardownload.adobe.com/pub/adobe/reader/unix/7x/7.0.9/enu/AdobeReader_enu-7.0.9-1.i386.tar.gz;
|
||||
sha256 = "0qs8v57gamkk243f44yqxic93izf0bn2d9l4wwbqqy1jv5s125hy";
|
||||
};
|
||||
|
||||
libPath = [
|
||||
libXt libXp libXext libX11 glib pango atk gtk libstdcpp5 zlib
|
||||
(if xineramaSupport then libXinerama else null)
|
||||
];
|
||||
|
||||
inherit fastStart;
|
||||
|
||||
|
||||
meta = {
|
||||
description = "Adobe Reader, a viewer for PDF documents"
|
||||
homepage = http://www.adobe.com/products/reader;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue