depot/third_party/nixpkgs/pkgs/development/tools/overcommit/default.nix
Default email 6ae7ad3cc5 Project import generated by Copybara.
GitOrigin-RevId: a322b32e9d74fb476944ff6cfb55833dc69cfaaa
2020-11-19 01:13:47 +01:00

15 lines
363 B
Nix

{ lib, bundlerApp }:
bundlerApp {
pname = "overcommit";
gemdir = ./.;
exes = [ "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 ];
platforms = platforms.unix;
};
}