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

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

  passthru.updateScript = bundlerUpdateScript "solargraph";

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