summary refs log tree commit diff
path: root/pkgs/development/tools/misc/epm
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-09-06 15:00:33 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-09-06 15:00:33 +0000
commit8746f18f0dd9206086d3520a997f0f5bfc21b070 (patch)
treef55e83e7455f0fd8f7925b774cf4dd836cc64f1c /pkgs/development/tools/misc/epm
parent4b04ed1b84ff6a497028a5824dc9ce7a4a85ea93 (diff)
downloadnixlib-8746f18f0dd9206086d3520a997f0f5bfc21b070.tar
nixlib-8746f18f0dd9206086d3520a997f0f5bfc21b070.tar.gz
nixlib-8746f18f0dd9206086d3520a997f0f5bfc21b070.tar.bz2
nixlib-8746f18f0dd9206086d3520a997f0f5bfc21b070.tar.lz
nixlib-8746f18f0dd9206086d3520a997f0f5bfc21b070.tar.xz
nixlib-8746f18f0dd9206086d3520a997f0f5bfc21b070.tar.zst
nixlib-8746f18f0dd9206086d3520a997f0f5bfc21b070.zip
* 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
Diffstat (limited to 'pkgs/development/tools/misc/epm')
-rw-r--r--pkgs/development/tools/misc/epm/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/epm/default.nix b/pkgs/development/tools/misc/epm/default.nix
new file mode 100644
index 000000000000..23b781902e7b
--- /dev/null
+++ b/pkgs/development/tools/misc/epm/default.nix
@@ -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;
+  };
+}