2018-07-20 19:47:54 -07:00
|
|
|
{ lib, bundlerApp }:
|
2018-05-26 08:30:17 -07:00
|
|
|
|
|
|
|
bundlerApp rec {
|
|
|
|
pname = "solargraph";
|
|
|
|
exes = ["solargraph" "solargraph-runtime"];
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "IDE tools for the Ruby language";
|
2018-12-01 19:27:52 -08:00
|
|
|
homepage = http://www.github.com/castwide/solargraph;
|
|
|
|
license = licenses.mit;
|
2018-05-26 08:30:17 -07:00
|
|
|
maintainers = with maintainers; [ worldofpeace ];
|
2018-12-01 19:27:52 -08:00
|
|
|
platforms = platforms.unix;
|
2018-05-26 08:30:17 -07:00
|
|
|
};
|
|
|
|
}
|