about summary refs log tree commit diff
path: root/pkgs/applications/misc/acrobat-reader/default.nix
blob: 3c2e5bafeb23fd898d672e09706b83c0ee38172c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ xineramaSupport ? false
, stdenv, fetchurl, libXt, libXp, libXext, libX11, libXinerama ? null
, glib, pango, atk, gtk, libstdcpp5, zlib
, fastStart ? false
}:

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 = {
    homepage = http://www.adobe.com/products/reader;
  };
}