overcommit: init at 0.51.0

This commit is contained in:
Oleksii Filonenko
2019-11-27 15:52:41 +02:00
parent 1b5df99e7a
commit daa1bad8ec
5 changed files with 69 additions and 0 deletions

View File

@@ -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;
};
}