23 lines
544 B
Nix
23 lines
544 B
Nix
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
||
|
|
||
|
bundlerEnv {
|
||
|
inherit ruby;
|
||
|
|
||
|
pname = "git_fame";
|
||
|
|
||
|
gemdir = ./.;
|
||
|
|
||
|
passthru.updateScript = bundlerUpdateScript "git-fame";
|
||
|
|
||
|
meta = with 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;
|
||
|
maintainers = with maintainers; [ nicknovitski ];
|
||
|
platforms = platforms.unix;
|
||
|
mainProgram = "git-fame";
|
||
|
};
|
||
|
}
|