summary refs log tree commit diff
path: root/pkgs/development/tools/overcommit/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/overcommit/default.nix')
-rw-r--r--pkgs/development/tools/overcommit/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/tools/overcommit/default.nix b/pkgs/development/tools/overcommit/default.nix
new file mode 100644
index 00000000000..84529ca4b6f
--- /dev/null
+++ b/pkgs/development/tools/overcommit/default.nix
@@ -0,0 +1,15 @@
+{ lib, bundlerApp }:
+
+bundlerApp {
+  pname = "overcommit";
+  gemdir = ./.;
+  exes = [ "overcommit" ];
+
+  meta = with lib; {
+    description = "Tool to manage and configure Git hooks";
+    homepage    = https://github.com/sds/overcommit;
+    license     = licenses.mit;
+    maintainers = with maintainers; [ filalex77 ];
+    platforms   = platforms.unix;
+  };
+}