Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 16 lines 391 B view raw
1{ lib, bundlerApp, bundlerUpdateScript }: 2 3bundlerApp { 4 pname = "solargraph"; 5 exes = [ "solargraph" ]; 6 gemdir = ./.; 7 8 passthru.updateScript = bundlerUpdateScript "solargraph"; 9 10 meta = with lib; { 11 description = "A Ruby language server"; 12 homepage = "https://solargraph.org/"; 13 license = licenses.mit; 14 maintainers = with maintainers; [ nicknovitski angristan ]; 15 }; 16}