nixpkgs/pkgs/development/tools/misc/epm/default.nix

28 lines
672 B
Nix
Raw Normal View History

2017-12-13 11:20:28 +01:00
{stdenv, fetchFromGitHub, rpm}:
2014-10-08 09:15:19 +02:00
stdenv.mkDerivation rec {
name = "epm-${version}";
2017-12-13 11:20:28 +01:00
version = "4.4";
2017-12-13 11:20:28 +01:00
src = fetchFromGitHub {
repo = "epm";
owner = "michaelrsweet";
rev = "v${version}";
sha256 = "0kaw7v2m20qirapkps4dna6nf9xibnwljvvv0l9vpvi920kw7j7p";
};
2014-10-08 09:15:19 +02:00
buildInputs = [ rpm ];
2017-12-13 11:20:28 +01:00
preInstall = ''
sed -i 's/README/README.md/' Makefile
'';
2014-10-08 09:15:19 +02:00
meta = with stdenv.lib; {
description = "The ESP Package Manager generates distribution archives for a variety of platforms";
2014-10-08 09:15:19 +02:00
homepage = http://www.msweet.org/projects.php?Z2;
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = platforms.unix;
};
}