2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2018-05-26 16:30:17 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
bundlerApp {
|
2018-05-26 16:30:17 +01:00
|
|
|
pname = "solargraph";
|
|
|
|
exes = ["solargraph" "solargraph-runtime"];
|
|
|
|
gemdir = ./.;
|
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "solargraph";
|
|
|
|
|
2018-05-26 16:30:17 +01:00
|
|
|
meta = with lib; {
|
2020-10-09 05:20:00 +01:00
|
|
|
description = "A Ruby language server";
|
|
|
|
homepage = "https://solargraph.org/";
|
2018-12-02 03:27:52 +00:00
|
|
|
license = licenses.mit;
|
2019-08-01 19:11:31 +01:00
|
|
|
maintainers = with maintainers; [ worldofpeace nicknovitski angristan ];
|
2018-05-26 16:30:17 +01:00
|
|
|
};
|
|
|
|
}
|