aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/version-management/git-and-tools/git-fame/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/version-management/git-and-tools/git-fame/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/version-management/git-and-tools/git-fame/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/version-management/git-and-tools/git-fame/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/version-management/git-and-tools/git-fame/default.nix
new file mode 100644
index 000000000000..782579c70446
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/version-management/git-and-tools/git-fame/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, bundlerEnv, ruby, bundlerUpdateScript }:
+
+bundlerEnv {
+ inherit ruby;
+
+ pname = "git_fame";
+
+ gemdir = ./.;
+
+ passthru.updateScript = bundlerUpdateScript "gitAndTools.git-fame";
+
+ 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 ];
+ platforms = platforms.unix;
+ };
+}