about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/package-management/elm-github-install/default.nix
blob: 5703a13745bdb0dae08b67fce9de465c7befd82b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:

bundlerEnv rec {
  pname = "elm_install";
  name = "elm-github-install-${version}";

  version = (import ./gemset.nix).elm_install.version;

  inherit ruby;
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "elm-github-install";

  meta = with lib; {
    description = "Install Elm packages from git repositories.";
    homepage    = https://github.com/gdotdesign/elm-github-install;
    license     = licenses.unfree;
    maintainers = with maintainers; [ roberth nicknovitski ];
    platforms   = platforms.all;
  };
}