mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 03:48:57 +00:00
20 lines
484 B
Nix
20 lines
484 B
Nix
{ 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;
|
|
};
|
|
}
|