Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / adobe-reader / default.nix
blob1a164f578a01661448b4dc9f11547edca83ec050
1 { lib
2 , stdenv
3 , fetchurl
4 , libX11
5 , cups
6 , zlib
7 , libxml2
8 , pango
9 , atk
10 , gtk2
11 , glib
12 , gdk-pixbuf
13 , gdk-pixbuf-xlib
16 stdenv.mkDerivation rec {
17   pname = "adobe-reader";
18   version = "9.5.5";
20   # TODO: convert to phases
21   builder = ./builder.sh;
23   src = fetchurl {
24     url = "http://ardownload.adobe.com/pub/adobe/reader/unix/9.x/${version}/enu/AdbeRdr${version}-1_i486linux_enu.tar.bz2";
25     sha256 = "0h35misxrqkl5zlmmvray1bqf4ywczkm89n9qw7d9arqbg3aj3pf";
26   };
28   # !!! Adobe Reader contains copies of OpenSSL, libcurl, and libicu.
29   # We should probably remove those and use the regular Nixpkgs versions.
30   libPath = lib.makeLibraryPath [ stdenv.cc.cc libX11 zlib libxml2 cups pango atk gtk2 glib gdk-pixbuf gdk-pixbuf-xlib ];
32   passthru.mozillaPlugin = "/libexec/adobe-reader/Browser/intellinux";
34   meta = {
35     description = "Adobe Reader, a viewer for PDF documents";
36     homepage = "http://www.adobe.com/products/reader";
37     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
38     license = lib.licenses.unfree;
39     knownVulnerabilities = [
40       "Numerous unresolved vulnerabilities"
41       "See: https://www.cvedetails.com/product/497/Adobe-Acrobat-Reader.html?vendor_id=53"
42     ];
43     platforms = [ "i686-linux" ];
44   };