depot/third_party/nixpkgs/pkgs/development/tools/misc/epm/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

27 lines
665 B
Nix

{stdenv, fetchFromGitHub, rpm}:
stdenv.mkDerivation rec {
pname = "epm";
version = "4.4";
src = fetchFromGitHub {
repo = "epm";
owner = "michaelrsweet";
rev = "v${version}";
sha256 = "0kaw7v2m20qirapkps4dna6nf9xibnwljvvv0l9vpvi920kw7j7p";
};
buildInputs = [ rpm ];
preInstall = ''
sed -i 's/README/README.md/' Makefile
'';
meta = with stdenv.lib; {
description = "The ESP Package Manager generates distribution archives for a variety of platforms";
homepage = "https://www.msweet.org/projects.php?Z2";
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = platforms.unix;
};
}