-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
47 lines (42 loc) · 1.05 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 NervesMountManager.MixProject do
use Mix.Project
@version "0.1.0"
def project do
[
app: :nerves_mount_manager,
version: @version,
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
build_embedded: true,
compilers: [:elixir_make | Mix.compilers()],
make_targets: ["all"],
make_clean: ["clean"],
deps: deps(),
package: package(),
source_url: "https://github.com/brandonmenc/nerves_mount_manager",
homepage_url: "https://github.com/brandonmenc/nerves_mount_manager",
name: "Nerves Mount Manager",
description: """
Monitors filesystem mounts.
"""
]
end
def application do
[
mod: {NervesMountManager.Application, []},
extra_applications: [:logger]
]
end
defp deps do
[
{:elixir_make, "~> 0.5", runtime: false}
]
end
defp package do
[
maintainers: ["Brandon Menc"],
licenses: ["Apache-2.0"],
links: %{github: "https://github.com/brandonmenc/nerves_mount_manager"}
]
end
end