nixpkgs/pkgs/development/ruby-modules/solargraph/default.nix

16 lines
380 B
Nix
Raw Normal View History

2018-07-21 02:47:54 +00:00
{ lib, bundlerApp }:
2018-05-26 15:30:17 +00: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 15:30:17 +00:00
maintainers = with maintainers; [ worldofpeace ];
2018-12-02 03:27:52 +00:00
platforms = platforms.unix;
2018-05-26 15:30:17 +00:00
};
}