forked from mirrors/nixpkgs
epm: update from 4.1 to 4.2
This commit is contained in:
parent
362699376a
commit
2ff0c8d6ef
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue