Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 363 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}