nixpkgs/pkgs/development/ruby-modules/solargraph/default.nix

17 lines
404 B
Nix
Raw Normal View History

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