about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/package-management/elm-github-install/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/package-management/elm-github-install/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/package-management/elm-github-install/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/package-management/elm-github-install/default.nix b/nixpkgs/pkgs/tools/package-management/elm-github-install/default.nix
new file mode 100644
index 000000000000..8da05981dafa
--- /dev/null
+++ b/nixpkgs/pkgs/tools/package-management/elm-github-install/default.nix
@@ -0,0 +1,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;
+  };
+}