mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 21:42:35 +03:00
9d7df2c6ad
that are in the OOo2 source dist. It seems the only things missing in the tarball are a kernel (but it has to be cross platform) and emacs... Gah, BLOAT! svn path=/nixpkgs/trunk/; revision=4135
12 lines
331 B
Nix
12 lines
331 B
Nix
{stdenv, fetchurl, pam, python, tcsh, libxslt}:
|
|
|
|
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 = [pam python tcsh libxslt];
|
|
}
|