Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Bluez.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://github.com/bbangert/bluez"
def project do
[
app: :bluez,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
dialyzer: [
plt_local_path: "priv/plts",
plt_core_path: "priv/plts",
plt_add_apps: [:phoenix_pubsub]
],
description:
"BlueZ-over-D-Bus client for Elixir: BLE scanning, GATT, pairing, and bluez-alsa audio",
package: package(),
docs: docs(),
source_url: @source_url
]
end
def application do
[
extra_applications: [:logger, :crypto]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
# NOTE: the D-Bus client is VENDORED (lib/bluez/rebus/, namespaced
# Bluez.Rebus) rather than a dep — hex refuses path/git deps and the
# service-side API isn't upstream yet (ausimian/rebus#9). typedstruct
# is the vendored code's compile-time macro dep.
{:typedstruct, "~> 0.5", runtime: false},
{:muontrap, "~> 1.8"},
{:phoenix_pubsub, "~> 2.1", optional: true},
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}
]
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url},
files: ~w(lib guides .formatter.exs mix.exs README.md LICENSE)
]
end
defp docs do
[
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
before_closing_body_tag: &before_closing_body_tag/1,
extras: [
"README.md",
"guides/architecture.md",
"guides/host_integration.md",
"guides/nerves_system.md"
],
groups_for_extras: [
Guides: ~r"guides/.*"
],
groups_for_modules: [
Supervision: [Bluez, Bluez.BusReady],
"Vendored D-Bus client": [
Bluez.Rebus,
Bluez.Rebus.Connection,
Bluez.Rebus.Message,
Bluez.Rebus.Encoder,
Bluez.Rebus.Decoder
],
Scanning: [Bluez.Client, Bluez.DeviceCache, Bluez.Advert],
GATT: [
Bluez.Gatt,
Bluez.GattTree,
Bluez.Gatt.Service,
Bluez.Gatt.Characteristic,
Bluez.Gatt.Descriptor
],
Pairing: [Bluez.Agent],
Audio: [Bluez.BlueAlsa],
"D-Bus plumbing": [Bluez.DBus, Bluez.DevicePath, Bluez.Variant]
]
]
end
# Render ```mermaid fenced blocks in moduledocs and guides (the canonical
# ExDoc recipe; hexdocs.pm allows the jsdelivr CDN).
defp before_closing_body_tag(:html) do
"""
<script defer src="https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.min.js"></script>
<script>
let initialized = false;
window.addEventListener("exdoc:loaded", () => {
if (!initialized) {
mermaid.initialize({
startOnLoad: false,
theme: document.body.className.includes("dark") ? "dark" : "default"
});
initialized = true;
}
let id = 0;
for (const codeEl of document.querySelectorAll("pre code.mermaid")) {
const preEl = codeEl.parentElement;
const graphDefinition = codeEl.textContent;
const graphEl = document.createElement("div");
const graphId = "mermaid-graph-" + id++;
mermaid.render(graphId, graphDefinition).then(({svg, bindFunctions}) => {
graphEl.innerHTML = svg;
bindFunctions?.(graphEl);
preEl.insertAdjacentElement("afterend", graphEl);
preEl.remove();
});
}
});
</script>
"""
end
defp before_closing_body_tag(_), do: ""
end