nixpkgs/pkgs/development/ruby-modules/solargraph/default.nix
2020-10-09 04:20:00 +00:00

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 ];
};
}