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
18 lines
460 B
Nix
18 lines
460 B
Nix
{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;
|
|
};
|
|
}
|