17 lines
391 B
Nix
Raw Permalink Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2018-05-26 15:30:17 +00:00
2019-08-13 21:52:01 +00:00
bundlerApp {
2018-05-26 15:30:17 +00:00
pname = "solargraph";
2021-01-09 04:20:00 +00:00
exes = [ "solargraph" ];
2018-05-26 15:30:17 +00:00
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "solargraph";
2018-05-26 15:30:17 +00:00
meta = with lib; {
2020-10-09 04:20:00 +00:00
description = "A Ruby language server";
homepage = "https://solargraph.org/";
2018-12-01 22:27:52 -05:00
license = licenses.mit;
maintainers = with maintainers; [ nicknovitski angristan ];
2018-05-26 15:30:17 +00:00
};
}