nixpkgs/pkgs/development/ruby-modules/solargraph/default.nix
2018-07-21 02:48:05 +00:00

16 lines
389 B
Nix

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