summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/git-fame/default.nix
blob: f4aa4878f62f23d91fc666b6efdd3251339b9d14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, bundlerEnv, ruby, bundlerUpdateScript }:

bundlerEnv {
  inherit ruby;

  pname = "git_fame";

  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "gitAndTools.git-fame";

  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;
    maintainers = with maintainers; [ expipiplus1 nicknovitski ];
    platforms   = platforms.unix;
  };
}