summary refs log blame commit diff
path: root/pkgs/development/ruby-modules/solargraph/default.nix
blob: ff9b1bac321c7a088f2e8e4e0417a934ba32357c (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         
 
            



                                              

                                                           

                                                    

                                                         
                                                                            
                               

    
{ 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;
  };
}