2019-11-27 05:52:41 -08:00
|
|
|
{ lib, bundlerApp }:
|
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "overcommit";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "overcommit" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Tool to manage and configure Git hooks";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/sds/overcommit";
|
2019-11-27 05:52:41 -08:00
|
|
|
license = licenses.mit;
|
2020-11-17 03:02:06 -08:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2019-11-27 05:52:41 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|