elm-github-install: init at 1.0.1

This commit is contained in:
Robert Hensing
2017-06-30 10:22:18 +02:00
parent ae953c22ed
commit 3d48fa72d3
5 changed files with 174 additions and 0 deletions
@@ -0,0 +1,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;
};
}