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