mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
18 lines
448 B
Nix
18 lines
448 B
Nix
{ 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;
|
|
};
|
|
}
|