summary refs log tree commit diff
path: root/pkgs/development/tools/overcommit/default.nix
blob: 5fa3dfa0f03ad7403e2d8e552480441bbcf0aef5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
  };
}