vscode-extensions.github.copilot{*}: bump (#364729)
[NixPkgs.git] / pkgs / tools / package-management / elm-github-install / default.nix
blobd5b945fcb205b6bafb7f9c98c25dc3e6c2b97eb5
2   lib,
3   bundlerEnv,
4   ruby,
5   bundlerUpdateScript,
6 }:
8 bundlerEnv rec {
9   pname = "elm_install";
10   name = "elm-github-install-${version}";
12   version = (import ./gemset.nix).elm_install.version;
14   inherit ruby;
15   gemdir = ./.;
17   passthru.updateScript = bundlerUpdateScript "elm-github-install";
19   meta = with lib; {
20     description = "Install Elm packages from git repositories";
21     homepage = "https://github.com/gdotdesign/elm-github-install";
22     license = licenses.unfree;
23     maintainers = with maintainers; [
24       roberth
25       nicknovitski
26     ];
27     platforms = platforms.all;
28     mainProgram = "elm-install";
29   };