Current section
Files
Jump to
Current section
Files
eml_gen_rtmp_server
mix.exs
mix.exs
defmodule GenRtmpServer.Mixfile do
use Mix.Project
def project do
[app: :gen_rtmp_server,
version: "0.1.0",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description,
package: package,
deps: deps]
end
def application do
[applications: [:logger, :ranch]]
end
defp deps do
[
#{:rtmp_handshake, in_umbrella: true},
#{:rtmp_session, in_umbrella: true},
{:rtmp_handshake, "~> 1.0", hex: :eml_rtmp_handshake},
{:rtmp_session, "~> 0.1.0", hex: :eml_rtmp_session},
{:ranch, "~> 1.2.1"},
{:uuid, "~> 1.1"},
{:ex_doc, "~> 0.14", only: :dev}
]
end
defp package do
[
name: :eml_gen_rtmp_server,
maintainers: ["Matthew Shapiro"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/KallDrexx/elixir-media-libs/tree/master/apps/gen_rtmp_server"}
]
end
defp description do
"Behaviour to make it easy to create custom RTMP servers"
end
end