mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
526 B
Nix
22 lines
526 B
Nix
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
|
|
|
bundlerEnv {
|
|
inherit ruby;
|
|
|
|
pname = "git_fame";
|
|
|
|
gemdir = ./.;
|
|
|
|
passthru.updateScript = bundlerUpdateScript "git-fame";
|
|
|
|
meta = with 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 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|