1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 03:25:02 +00:00
nixpkgs/pkgs/development/ruby-modules/solargraph/default.nix

18 lines
481 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2018-05-26 16:30:17 +01:00
2019-08-13 22:52:01 +01:00
bundlerApp {
2018-05-26 16:30:17 +01:00
pname = "solargraph";
exes = ["solargraph" "solargraph-runtime"];
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "solargraph";
2018-05-26 16:30:17 +01:00
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;
maintainers = with maintainers; [ worldofpeace nicknovitski angristan ];
2018-12-02 03:27:52 +00:00
platforms = platforms.unix;
2018-05-26 16:30:17 +01:00
};
}