summary refs log tree commit diff
path: root/pkgs/system/all-packages-generic.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-11-01 11:34:47 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-11-01 11:34:47 +0000
commite542ee6e4f68956727c8a1168cde5afc2bf7200c (patch)
tree03ffd2727e6e4a1317b7f3de50b2859afcc40ff8 /pkgs/system/all-packages-generic.nix
parent4ba92bbd4e65ef61a6df45d85a8924414c3fea2b (diff)
downloadnixpkgs-e542ee6e4f68956727c8a1168cde5afc2bf7200c.tar
nixpkgs-e542ee6e4f68956727c8a1168cde5afc2bf7200c.tar.gz
nixpkgs-e542ee6e4f68956727c8a1168cde5afc2bf7200c.tar.bz2
nixpkgs-e542ee6e4f68956727c8a1168cde5afc2bf7200c.tar.lz
nixpkgs-e542ee6e4f68956727c8a1168cde5afc2bf7200c.tar.xz
nixpkgs-e542ee6e4f68956727c8a1168cde5afc2bf7200c.tar.zst
nixpkgs-e542ee6e4f68956727c8a1168cde5afc2bf7200c.zip
* Build Acrobat Reader with Xinerama support. May or may not be useful.
svn path=/nixpkgs/trunk/; revision=4181
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index 8fe78c2c20d..40ce7a9febe 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -1401,6 +1401,11 @@ rec {
     inherit fetchurl stdenv;
   };
 
+  fuse = import ../os-specific/linux/fuse {
+    inherit fetchurl stdenv;
+  };
+
+  
   ### DATA
 
   docbook_xml_dtd_42 = (import ../data/sgml+xml/schemas/xml-dtd/docbook-4.2) {
@@ -1677,9 +1682,10 @@ rec {
 
   acroread = (import ../applications/misc/acrobat-reader) {
     inherit fetchurl stdenv zlib;
-    inherit (xlibs) libXt libXp libXext libX11;
+    inherit (xlibs) libXt libXp libXext libX11 libXinerama;
     inherit (gtkLibs) glib pango atk gtk;
     libstdcpp5 = gcc33.gcc;
+    xineramaSupport = true;
   };
 
   eclipse = (import ../applications/editors/eclipse) {