mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
16 lines
361 B
Nix
16 lines
361 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; [ filalex77 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|