8746f18f0d
install (of course there's no "make install", that would be too easy). Also create some wrapper scripts "oowriter", "oodraw" etc. (I haven't done a full build of this yet, I've hacked on a tmpdir left behind by nix-build -K.) svn path=/nixpkgs/trunk/; revision=9260
64 lines
1.7 KiB
Nix
64 lines
1.7 KiB
Nix
{ 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, unzip, gtk, libmspack, getopt, file, jre, cairo, which
|
|
, icu, boost
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "openoffice.org-2.2.1";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.nluug.nl/pub/office/openoffice/stable/2.2.1/OOo_2.2.1_src_core.tar.bz2;
|
|
sha256 = "1mn7p68m6z3rlwm2ynvvbzz2idpyds2hjmwlhycfsp1gi644ridd";
|
|
};
|
|
|
|
configureFlags = "
|
|
--with-package-format=native
|
|
--disable-cups
|
|
--disable-epm
|
|
--disable-fontooo
|
|
--disable-gnome-vfs
|
|
--disable-gnome-vfs
|
|
--disable-mathmldtd
|
|
--disable-mozilla
|
|
--disable-odk
|
|
--disable-pasf
|
|
--disable-qadevooo
|
|
--with-cairo
|
|
--with-system-libs
|
|
--with-system-python
|
|
--with-system-boost
|
|
--without-afms
|
|
--without-dict
|
|
--without-fonts
|
|
--without-java
|
|
--without-myspell-dicts
|
|
--without-nas
|
|
--without-ppds
|
|
--without-system-agg
|
|
--without-system-beanshell
|
|
--without-system-hsqldb
|
|
--without-system-xalan
|
|
--without-system-xerces
|
|
--without-system-xml-apis
|
|
--without-system-xt
|
|
";
|
|
|
|
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 unzip gtk libmspack
|
|
getopt file jre cairo which icu boost
|
|
];
|
|
|
|
inherit icu;
|
|
|
|
meta = {
|
|
description = "OpenOffice.org is a multiplatform and multilingual office suite";
|
|
homepage = http://www.openoffice.org/;
|
|
license = "LGPL";
|
|
};
|
|
}
|