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

bundlerEnv rec {
  inherit ruby;

  pname = "git_fame";

  gemdir = ./.;

  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 ];
    platforms   = platforms.unix;
  };
}