nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 15 lines 361 B view raw
1{ lib, bundlerApp }: 2 3bundlerApp { 4 pname = "overcommit"; 5 gemdir = ./.; 6 exes = [ "overcommit" ]; 7 8 meta = with lib; { 9 description = "Tool to manage and configure Git hooks"; 10 homepage = https://github.com/sds/overcommit; 11 license = licenses.mit; 12 maintainers = with maintainers; [ filalex77 ]; 13 platforms = platforms.unix; 14 }; 15}