summary refs log tree commit diff
path: root/pkgs/development/tools/misc/epm
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2014-10-08 09:15:19 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2014-10-08 09:17:28 +0200
commit2ff0c8d6efac3676237eab75a3773b32e4bb9222 (patch)
tree860369ed631b867e0946ced2c6490a0cd1ef37d8 /pkgs/development/tools/misc/epm
parent362699376a7b9ca77919b89574b1d8acfbe57e48 (diff)
downloadnixpkgs-2ff0c8d6efac3676237eab75a3773b32e4bb9222.tar
nixpkgs-2ff0c8d6efac3676237eab75a3773b32e4bb9222.tar.gz
nixpkgs-2ff0c8d6efac3676237eab75a3773b32e4bb9222.tar.bz2
nixpkgs-2ff0c8d6efac3676237eab75a3773b32e4bb9222.tar.lz
nixpkgs-2ff0c8d6efac3676237eab75a3773b32e4bb9222.tar.xz
nixpkgs-2ff0c8d6efac3676237eab75a3773b32e4bb9222.tar.zst
nixpkgs-2ff0c8d6efac3676237eab75a3773b32e4bb9222.zip
epm: update from 4.1 to 4.2
Diffstat (limited to 'pkgs/development/tools/misc/epm')
-rw-r--r--pkgs/development/tools/misc/epm/default.nix18
1 files changed, 11 insertions, 7 deletions
diff --git a/pkgs/development/tools/misc/epm/default.nix b/pkgs/development/tools/misc/epm/default.nix
index 23b781902e7..9d84011e365 100644
--- a/pkgs/development/tools/misc/epm/default.nix
+++ b/pkgs/development/tools/misc/epm/default.nix
@@ -1,17 +1,21 @@
 {stdenv, fetchurl, rpm}:
 
-stdenv.mkDerivation {
-  name = "epm-4.1";
+stdenv.mkDerivation rec {
+  name = "epm-${version}";
+  version = "4.2";
 
   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";
+    url = "http://www.msweet.org/files/project2/epm-4.2-source.tar.bz2";
+    sha256 = "13imglm1fgd7p5y9lc0xsl6x4cdjsk5lnan5sn8f7m4jwbx8kik6";
   };
 
-  buildInputs = [rpm];
+  buildInputs = [ rpm ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "The ESP Package Manager generates distribution archives for a variety of platforms";
-    homepage = http://www.easysw.com/epm/index.php;
+    homepage = http://www.msweet.org/projects.php?Z2;
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ pSub ];
+    platforms = platforms.unix;
   };
 }