nixpkgs/pkgs/development/tools/overcommit/default.nix

16 lines
363 B
Nix
Raw Normal View History

2019-11-27 13:52:41 +00:00
{ 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";
2019-11-27 13:52:41 +00:00
license = licenses.mit;
maintainers = with maintainers; [ Br1ght0ne ];
2019-11-27 13:52:41 +00:00
platforms = platforms.unix;
};
}