2018-07-21 04:47:54 +02:00
|
|
|
{ lib, bundlerApp }:
|
2018-05-26 17:30:17 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|