nixpkgs/pkgs/development/ruby-modules/solargraph/default.nix
2020-04-10 17:54:53 +01:00

18 lines
483 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "solargraph";
exes = ["solargraph" "solargraph-runtime"];
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "solargraph";
meta = with lib; {
description = "IDE tools for the Ruby language";
homepage = "http://www.github.com/castwide/solargraph";
license = licenses.mit;
maintainers = with maintainers; [ worldofpeace nicknovitski angristan ];
platforms = platforms.unix;
};
}