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

18 lines
483 B
Nix
Raw Normal View History

{ 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;
};
}