20 lines
473 B
Nix
20 lines
473 B
Nix
{ 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;
|
|
};
|
|
}
|