summary refs log tree commit diff
path: root/pkgs/development/tools/overcommit/default.nix
blob: 84529ca4b6fe1a29b363d73e1baff73eea4182bf (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;
  };
}