* More OpenOffice hackery. Added the magic incantations to get it to

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
This commit is contained in:
Eelco Dolstra
2007-09-06 15:00:33 +00:00
parent 4b04ed1b84
commit 8746f18f0d
4 changed files with 80 additions and 5 deletions
@@ -0,0 +1,17 @@
{stdenv, fetchurl, rpm}:
stdenv.mkDerivation {
name = "epm-4.1";
src = fetchurl {
url = http://ftp.rz.tu-bs.de/pub/mirror/ftp.easysw.com/ftp/pub/epm/4.1/epm-4.1-source.tar.bz2;
sha256 = "18xq1h9hx410x28bfccabydrqb1c0dqnq62qa17wc3846rwf234n";
};
buildInputs = [rpm];
meta = {
description = "The ESP Package Manager generates distribution archives for a variety of platforms";
homepage = http://www.easysw.com/epm/index.php;
};
}