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

17 lines
404 B
Nix
Raw Normal View History

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