9f054b5e1a
(It was requested by them.) I left one case due to fetching from their personal repo: pkgs/desktops/pantheon/desktop/extra-elementary-contracts/default.nix
16 lines
391 B
Nix
16 lines
391 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "solargraph";
|
|
exes = [ "solargraph" ];
|
|
gemdir = ./.;
|
|
|
|
passthru.updateScript = bundlerUpdateScript "solargraph";
|
|
|
|
meta = with lib; {
|
|
description = "A Ruby language server";
|
|
homepage = "https://solargraph.org/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nicknovitski angristan ];
|
|
};
|
|
}
|