-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmix.exs
49 lines (43 loc) · 1.23 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
48
49
defmodule ScenicDriverInky.MixProject do
use Mix.Project
@pi_targets [:rpi, :rpi0, :rpi2, :rpi3, :rpi3a]
def project do
[
app: :scenic_driver_inky,
version: "1.0.0",
elixir: "~> 1.11",
description: description(),
package: package(),
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:scenic, "~> 0.11.0-beta.0"},
{:scenic_driver_local, "~> 0.11.0-beta.0", targets: @pi_targets},
{:rpi_fb_capture, "~> 0.1", targets: @pi_targets},
{:inky, "~> 1.0.0"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp description do
"Pimoroni Inky driver for Scenic"
end
defp package do
%{
name: "scenic_driver_inky",
description:
"A library to provide a Scenic framework driver implementation for the Inky series of eInk displays from Pimoroni. Built on top of the pappersverk/inky library. All in Elixir.",
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/lawik/scenic_driver_inky"}
}
end
end