1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "solargraph";
5 exes = ["solargraph" "solargraph-runtime"];
6 gemdir = ./.;
7
8 passthru.updateScript = bundlerUpdateScript "solargraph";
9
10 meta = with lib; {
11 description = "IDE tools for the Ruby language";
12 homepage = "http://www.github.com/castwide/solargraph";
13 license = licenses.mit;
14 maintainers = with maintainers; [ worldofpeace nicknovitski angristan ];
15 platforms = platforms.unix;
16 };
17}