2019-07-22 13:02:47 +01:00
|
|
|
{ stdenv, bundlerEnv, ruby, bundlerUpdateScript }:
|
2017-07-05 13:02:20 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
bundlerEnv {
|
2017-07-05 13:02:20 +01:00
|
|
|
inherit ruby;
|
|
|
|
|
|
|
|
pname = "git_fame";
|
|
|
|
|
|
|
|
gemdir = ./.;
|
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "gitAndTools.git-fame";
|
|
|
|
|
2017-07-05 13:02:20 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = ''
|
|
|
|
A command-line tool that helps you summarize and pretty-print collaborators based on contributions
|
|
|
|
'';
|
|
|
|
homepage = http://oleander.io/git-fame-rb;
|
|
|
|
license = licenses.mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ expipiplus1 nicknovitski ];
|
2017-07-05 13:02:20 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|