about summary refs log tree commit diff
path: root/pkgs/development/tools/overcommit/default.nix
blob: 663a13af370d6158cf2445c62433f80cd0d312e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "overcommit";
  gemdir = ./.;
  exes = [ "overcommit" ];

  passthru = {
    updateScript = bundlerUpdateScript "overcommit";
  };

  meta = with lib; {
    description = "Tool to manage and configure Git hooks";
    homepage    = "https://github.com/sds/overcommit";
    license     = licenses.mit;
    maintainers = with maintainers; [ Br1ght0ne anthonyroussel ];
    platforms   = platforms.unix;
  };
}