-
Notifications
You must be signed in to change notification settings - Fork 6
/
mix.exs
46 lines (40 loc) · 1.21 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
defmodule NervesSystemLinkit.Mixfile do
use Mix.Project
@version Path.join(__DIR__, "VERSION")
|> File.read!
|> String.trim
def project do
[app: :nerves_system_linkit,
version: @version,
elixir: "~> 1.3",
compilers: Mix.compilers ++ [:nerves_package],
description: description(),
package: package(),
deps: deps(),
aliases: ["deps.precompile": ["nerves.env", "deps.precompile"]]]
end
def application do
[]
end
defp deps do
[
{:nerves, "~> 0.7", runtime: false },
{:nerves_system_br, "~> 0.13.7", runtime: false },
{:nerves_toolchain_mipsel_unknown_linux_musl, "~> 0.11.0", runtime: false}
]
end
defp description do
"""
Nerves System - LinkIt Smart
"""
end
defp package do
[maintainers: ["Frank Hunleth", "Justin Schneck"],
files: ["rootfs_overlay", "LICENSE", "mix.exs", "nerves_defconfig",
"nerves.exs", "README.md", "VERSION", "rootfs_overlay", "Config.in",
"external.mk", "package", "post-createfs.sh", "fwup.conf", "linux-4.4",
"linux-backports.defconfig"],
licenses: ["Apache 2.0"],
links: %{"Github" => "https://github.com/nerves-project/nerves_system_linkit"}]
end
end