* Added a description.
svn path=/nixpkgs/trunk/; revision=11509
This commit is contained in:
parent
144e3b4e9d
commit
bcb90548ab
|
@ -8,18 +8,23 @@ assert stdenv.system == "i686-linux";
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "acrobat-reader-7.0.9";
|
name = "acrobat-reader-7.0.9";
|
||||||
|
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
|
|
||||||
src = fetchurl {
|
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;
|
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";
|
sha256 = "0qs8v57gamkk243f44yqxic93izf0bn2d9l4wwbqqy1jv5s125hy";
|
||||||
};
|
};
|
||||||
|
|
||||||
libPath = [
|
libPath = [
|
||||||
libXt libXp libXext libX11 glib pango atk gtk libstdcpp5 zlib
|
libXt libXp libXext libX11 glib pango atk gtk libstdcpp5 zlib
|
||||||
(if xineramaSupport then libXinerama else null)
|
(if xineramaSupport then libXinerama else null)
|
||||||
];
|
];
|
||||||
|
|
||||||
inherit fastStart;
|
inherit fastStart;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
description = "Adobe Reader, a viewer for PDF documents"
|
||||||
homepage = http://www.adobe.com/products/reader;
|
homepage = http://www.adobe.com/products/reader;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue