Current section
Files
Jump to
Current section
Files
nerves_system_alix
mix.exs
mix.exs
defmodule NervesSystemAlix.Mixfile do
use Mix.Project
@version Path.join(__DIR__, "VERSION")
|> File.read!
|> String.strip
def project do
[app: :nerves_system_alix,
version: @version,
elixir: "~> 1.2",
compilers: Mix.compilers ++ [:nerves_system],
description: description,
package: package,
deps: deps]
end
def application do
[]
end
defp deps do
[{:nerves_system, "~> 0.1.2"},
#{:nerves_system_br, github: "nerves-project/nerves_system_br"},
{:nerves_system_br, "~> 0.5.1"},
{:nerves_toolchain_i586_unknown_linux_gnu, "~> 0.6.0"}]
end
defp description do
"""
Nerves System - Alix http://www.pcengines.ch/alix.htm
"""
end
defp package do
[maintainers: ["Frank Hunleth", "Justin Schneck"],
files: ["LICENSE", "mix.exs", "nerves_defconfig", "nerves.exs", "README.md", "VERSION"],
licenses: ["Apache 2.0"],
links: %{"Github" => "https://github.com/nerves-project/nerves_system_alix"}]
end
end