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