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

22 lines
546 B
Nix
Raw Normal View History

{ stdenv, 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 "gitAndTools.git-fame";
2017-07-05 13:02:20 +01:00
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 ];
2017-07-05 13:02:20 +01:00
platforms = platforms.unix;
};
}