git-fame: init at 2.5.2

This commit is contained in:
Joe Hermaszewski
2017-08-09 07:32:21 +01:00
committed by Jörg Thalheim
parent 3bda92175a
commit 531a5b1afe
5 changed files with 111 additions and 0 deletions
@@ -0,0 +1,19 @@
{ stdenv, bundlerEnv, ruby, fetchFromGitHub, makeWrapper, bundler }:
bundlerEnv rec {
inherit ruby;
pname = "git_fame";
gemdir = ./.;
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 ];
platforms = platforms.unix;
};
}