summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorArmijn Hemel2005-10-26 17:05:32 +0000
committerArmijn Hemel2005-10-26 17:05:32 +0000
commit218a6386bf36943c8928f7a1459bb75585e173ce (patch)
tree97246490b4f3133f770213e58be9169f5c160f49 /pkgs/applications
parenta4cc462b1756e8dcddbf4607a8af078a18c07c86 (diff)
get OpenOffice through the configure phase
svn path=/nixpkgs/trunk/; revision=4145
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/office/openoffice/builder.sh2
-rw-r--r--pkgs/applications/office/openoffice/default.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/office/openoffice/builder.sh b/pkgs/applications/office/openoffice/builder.sh
index 8a42f18cfbb8..d0c9a59f7fb5 100644
--- a/pkgs/applications/office/openoffice/builder.sh
+++ b/pkgs/applications/office/openoffice/builder.sh
@@ -2,7 +2,7 @@ source $stdenv/setup
 
 configurePhase() {
   cd config_office/;
-  ./configure --disable-epm --disable-odk --with-java=no --disable-cups --with-system-libs --with-system-python --disable-mozilla;
+  ./configure --disable-epm --disable-odk --with-java=no --disable-cups --with-system-libs --with-system-python --disable-mozilla --without-nas --disable-pasf --disable-gnome-vfs;
 }
 
 configurePhase=configurePhase;
diff --git a/pkgs/applications/office/openoffice/default.nix b/pkgs/applications/office/openoffice/default.nix
index 8672fafbd96d..d8fe537ad3e0 100644
--- a/pkgs/applications/office/openoffice/default.nix
+++ b/pkgs/applications/office/openoffice/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, pam, python, tcsh, libxslt, perl}:
+{stdenv, fetchurl, pam, python, tcsh, libxslt, perl, perlArchiveZip, perlCompressZlib, zlib, libjpeg, expat, pkgconfig, freetype, libwpd, libxml2, db4, sablotron, curl, libXaw, fontconfig, libsndfile, neon, bison, flex, zip, gtk, libmspack}:
 
 stdenv.mkDerivation {
   name = "openoffice.org-2.0.0";
@@ -7,5 +7,5 @@ stdenv.mkDerivation {
     url = ftp://ftp.nluug.nl/pub/office/openoffice/stable/2.0.0/OOo_2.0.0_src.tar.gz;
     md5 = "a68933afc2bf432d11b2043ac99ba0aa";
   };
-  buildInputs = [pam python tcsh libxslt perl];
+  buildInputs = [pam python tcsh libxslt perl perlArchiveZip perlCompressZlib zlib libjpeg expat pkgconfig freetype libwpd libxml2 db4 sablotron curl libXaw fontconfig libsndfile neon bison flex zip gtk libmspack];
 }