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

18 lines
483 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2018-05-26 15:30:17 +00:00
2019-08-13 21:52:01 +00:00
bundlerApp {
2018-05-26 15:30:17 +00:00
pname = "solargraph";
exes = ["solargraph" "solargraph-runtime"];
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "solargraph";
2018-05-26 15:30:17 +00:00
meta = with lib; {
description = "IDE tools for the Ruby language";
homepage = "http://www.github.com/castwide/solargraph";
2018-12-02 03:27:52 +00:00
license = licenses.mit;
maintainers = with maintainers; [ worldofpeace nicknovitski angristan ];
2018-12-02 03:27:52 +00:00
platforms = platforms.unix;
2018-05-26 15:30:17 +00:00
};
}