nixpkgs/pkgs/development/tools/overcommit/default.nix
2022-10-09 21:17:46 +02:00

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;
};
}