1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "overcommit";
5 gemdir = ./.;
6 exes = [ "overcommit" ];
7
8 passthru = {
9 updateScript = bundlerUpdateScript "overcommit";
10 };
11
12 meta = with lib; {
13 description = "Tool to manage and configure Git hooks";
14 homepage = "https://github.com/sds/overcommit";
15 license = licenses.mit;
16 maintainers = with maintainers; [ Br1ght0ne anthonyroussel ];
17 platforms = platforms.unix;
18 };
19}