dogedns: 0.2.6 -> 0.2.8 (#340101)
[NixPkgs.git] / pkgs / applications / version-management / git-fame / default.nix
blob08009920b61a93a37acea15ee8f34ac63b6be7b6
2   lib,
3   bundlerEnv,
4   ruby,
5   bundlerUpdateScript,
6 }:
8 bundlerEnv {
9   inherit ruby;
11   pname = "git_fame";
13   gemdir = ./.;
15   passthru.updateScript = bundlerUpdateScript "git-fame";
17   meta = with lib; {
18     description = ''
19       A command-line tool that helps you summarize and pretty-print collaborators based on contributions
20     '';
21     homepage = "http://oleander.io/git-fame-rb";
22     license = licenses.mit;
23     maintainers = with maintainers; [ nicknovitski ];
24     platforms = platforms.unix;
25     mainProgram = "git-fame";
26   };