nixpkgs/pkgs/tools/package-management/elm-github-install/default.nix

22 lines
584 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
2017-06-29 13:51:45 +01:00
bundlerEnv rec {
pname = "elm_install";
2017-06-29 13:51:45 +01:00
name = "elm-github-install-${version}";
version = (import ./gemset.nix).elm_install.version;
2017-06-29 13:51:45 +01:00
inherit ruby;
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "elm-github-install";
2017-06-29 13:51:45 +01:00
meta = with lib; {
description = "Install Elm packages from git repositories";
homepage = "https://github.com/gdotdesign/elm-github-install";
2017-06-29 13:51:45 +01:00
license = licenses.unfree;
maintainers = with maintainers; [ roberth nicknovitski ];
2017-06-29 13:51:45 +01:00
platforms = platforms.all;
};
}