nixpkgs/pkgs/applications/version-management/git-and-tools/git-fame/default.nix

22 lines
526 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
2017-07-05 14:02:20 +02:00
2019-08-13 23:52:01 +02:00
bundlerEnv {
2017-07-05 14:02:20 +02:00
inherit ruby;
pname = "git_fame";
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "git-fame";
meta = with lib; {
2017-07-05 14:02:20 +02: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 14:02:20 +02:00
license = licenses.mit;
maintainers = with maintainers; [ expipiplus1 nicknovitski ];
2017-07-05 14:02:20 +02:00
platforms = platforms.unix;
};
}