2022-10-09 19:16:52 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2019-11-27 13:52:41 +00:00
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "overcommit";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "overcommit" ];
|
|
|
|
|
2022-10-09 19:16:52 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = bundlerUpdateScript "overcommit";
|
|
|
|
};
|
|
|
|
|
2019-11-27 13:52:41 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Tool to manage and configure Git hooks";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/sds/overcommit";
|
2019-11-27 13:52:41 +00:00
|
|
|
license = licenses.mit;
|
2022-10-09 19:17:46 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne anthonyroussel ];
|
2019-11-27 13:52:41 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|