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

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;
  };
}