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

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

  version = (import ./gemset.nix).elm_install.version;
  inherit ruby;
  gemdir = ./.;

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