depot/third_party/nixpkgs/pkgs/development/tools/overcommit/default.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

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