17 lines
424 B
Nix
17 lines
424 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "solargraph";
|
|
exes = ["solargraph" "solargraph-runtime"];
|
|
gemdir = ./.;
|
|
|
|
passthru.updateScript = bundlerUpdateScript "solargraph";
|
|
|
|
meta = with lib; {
|
|
description = "A Ruby language server";
|
|
homepage = "https://solargraph.org/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ worldofpeace nicknovitski angristan ];
|
|
};
|
|
}
|