-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
47 lines (42 loc) · 1.04 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
47
defmodule IEQBackhaul.Mixfile do
use Mix.Project
def project do
[app: :ieq_gateway,
version: "0.2.0",
elixir: "~> 1.5",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps()]
end
def application do
[
applications: [:logger, :nerves_uart],
env: [speed: 115200,
tty: "/dev/ttyUSB989898",
]
]
end
def description do
"""
A Client for the RFM69-USB-Gateway and Indoor Air Quality Sensor
"""
end
def package do
[
name: :ieq_gateway,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Christopher Steven Coté"],
licenses: ["Apache License 2.0"],
links: %{"GitHub" => "https://github.com/NationalAssociationOfRealtors/ieq_gateway",
"Docs" => "https://github.com/NationalAssociationOfRealtors/ieq_gateway"}
]
end
defp deps do
[
{:nerves_uart, "~> 1.1"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end