WiP builder for OpenOffice2. This alone will be worth many ECTS if I succeeed in adding it :P

svn path=/nixpkgs/trunk/; revision=4133
This commit is contained in:
Armijn Hemel 2005-10-25 18:01:13 +00:00
parent 8e2ba28fe1
commit 74b4df1a7b
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,10 @@
source $stdenv/setup
configurePhase() {
cd config_office/;
./configure;
}
configurePhase=configurePhase;
genericBuild

View File

@ -0,0 +1,11 @@
{stdenv, fetchurl, tcsh, cups, pam}:
stdenv.mkDerivation {
name = "openoffice.org-2.0.0";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/office/openoffice/stable/2.0.0/OOo_2.0.0_src.tar.gz;
md5 = "a68933afc2bf432d11b2043ac99ba0aa";
};
buildInputs = [tcsh cups pam];
}