16 stdenv.mkDerivation rec {
17 pname = "adobe-reader";
20 # TODO: convert to phases
21 builder = ./builder.sh;
24 url = "http://ardownload.adobe.com/pub/adobe/reader/unix/9.x/${version}/enu/AdbeRdr${version}-1_i486linux_enu.tar.bz2";
25 sha256 = "0h35misxrqkl5zlmmvray1bqf4ywczkm89n9qw7d9arqbg3aj3pf";
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";
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"
43 platforms = [ "i686-linux" ];