-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmix.exs
More file actions
52 lines (48 loc) · 1.25 KB
/
mix.exs
File metadata and controls
52 lines (48 loc) · 1.25 KB
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
48
49
50
51
52
defmodule NervesFlutterSupport.MixProject do
use Mix.Project
def project do
[
app: :nerves_flutter_support,
version: "1.3.2",
description: "Supporting libraries and runtime engine for Flutter on Nerves.",
elixir: "~> 1.17",
compilers: Mix.compilers() ++ [:nerves_flutter_support],
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: [
main: "readme",
extras: ["README.md"]
],
package: package()
]
end
def package do
[
maintainers: ["Digit"],
name: :nerves_flutter_support,
licenses: ["Apache-2.0"],
files:
~w(lib docker LICENSE VERSION FLUTTER_ENGINE_HASH .tool-versions .formatter.exs mix.exs README.md bin/build_aot.sh),
links: %{
"Github" => "https://github.com/nerves-flutter/nerves_flutter_support"
}
]
end
def application do
[
extra_applications: [:logger, :ssl, :inets],
mod: {NervesFlutterSupport.Application, []}
]
end
defp deps do
[
{:castore, "~> 1.0"},
{:jason, "~> 1.4"},
{:muontrap, "~> 1.6"},
{:nerves_runtime, "~> 0.13"},
{:nerves_time_zones, "~> 0.3"},
{:yaml_elixir, "~> 2.11"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end