Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / overcommit / default.nix
blob663a13af370d6158cf2445c62433f80cd0d312e6
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "overcommit";
5   gemdir = ./.;
6   exes = [ "overcommit" ];
8   passthru = {
9     updateScript = bundlerUpdateScript "overcommit";
10   };
12   meta = with lib; {
13     description = "Tool to manage and configure Git hooks";
14     homepage    = "https://github.com/sds/overcommit";
15     license     = licenses.mit;
16     maintainers = with maintainers; [ Br1ght0ne anthonyroussel ];
17     platforms   = platforms.unix;
18   };