18 lines
483 B
Nix
18 lines
483 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|