summary refs log blame commit diff
path: root/pkgs/development/ruby-modules/solargraph/default.nix
blob: 39520fdb0ba112f3f7cabc987bdfeb13c1012d57 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                    













                                                            
{ lib, bundlerApp }:

bundlerApp rec {
  pname = "solargraph";
  exes = ["solargraph"  "solargraph-runtime"];
  gemdir = ./.;

  meta = with lib; {
    description = "IDE tools for the Ruby language";
    homepage    = http://www.github.com/castwide/solargraph;
    license     = licenses.mit;
    maintainers = with maintainers; [ worldofpeace ];
    platforms   = platforms.unix;
  };
}