3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/git-and-tools/git-fame/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
526 B
Nix
Raw Normal View History

{ lib, 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 = ./.;
passthru.updateScript = bundlerUpdateScript "git-fame";
meta = with lib; {
2017-07-05 13:02:20 +01:00
description = ''
A command-line tool that helps you summarize and pretty-print collaborators based on contributions
'';
homepage = "http://oleander.io/git-fame-rb";
2017-07-05 13:02:20 +01:00
license = licenses.mit;
maintainers = with maintainers; [ expipiplus1 nicknovitski ];
2017-07-05 13:02:20 +01:00
platforms = platforms.unix;
};
}