aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorSonny Scroggin <scrogson@gmail.com>2015-09-29 13:18:49 -0500
committerSonny Scroggin <scrogson@gmail.com>2015-09-29 13:18:49 -0500
commitb63c51c245066654e912315664087dc759d59637 (patch)
tree78ccbf71a05de527f949f9a7f39a5e8df28493ab /mix.exs
parentTemporary switch to fork of oauth2 that compiles with r18 (diff)
Add additional package information for hex.pm
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mix.exs b/mix.exs
index 128514896..b71c7e255 100644
--- a/mix.exs
+++ b/mix.exs
@@ -10,6 +10,7 @@ defmodule Ejabberd.Mixfile do
compilers: [:asn1] ++ Mix.compilers,
erlc_options: erlc_options,
erlc_paths: ["asn1", "src"],
+ package: package,
deps: deps]
end
@@ -45,6 +46,12 @@ defmodule Ejabberd.Mixfile do
{:eredis, git: "https://github.com/wooga/eredis"},
{:exrm, "~> 0.19.2"}
]
+
+ defp package do
+ [licenses: ["GPLv2"],
+ links: %{"Site" => "https://www.ejabberd.im",
+ "Documentation" => "http://docs.ejabberd.im",
+ "Source" => "https://github.com/processone/ejabberd"}]
end
end