4a3aa3d7d8
GitOrigin-RevId: 24c9b05ac53e422f1af81a156f1fd58499eb27fb
16 lines
424 B
Nix
16 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 ];
|
|
};
|
|
}
|