nixpkgs/pkgs/development/ruby-modules/solargraph/default.nix
2019-08-28 11:07:32 +00:00

18 lines
481 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;
};
}