Skip to content

Commit

Permalink
add description to mix for hex
Browse files Browse the repository at this point in the history
  • Loading branch information
aef- committed Apr 4, 2022
1 parent 8fa27e8 commit e3fd4ba
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ExJack
JACK interface for Elixir using Rustler-based NIF.
JACK audio interface for Elixir using Rustler-based NIF.

The purpose of this library is to provide an audio outlet for Elixir through all platforms. However, if you're on Linux, and don't need JACK outright, it's probably preferable to use [ExAlsa](https://github.com/FraihaAV/ex_alsa) and interface with ALSA directly.

Expand Down
8 changes: 4 additions & 4 deletions lib/ex_jack/server.ex
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ defmodule ExJack.Server do
@type output_func_t :: (Range.t() -> frames_t)
@type input_func_t :: (frames_t -> any())
@type options_t :: %{
name: String.t(),
use_callback: boolean(),
auto_connect: boolean(),
}
name: String.t(),
use_callback: boolean(),
auto_connect: boolean()
}

@doc """
Start the server.
Expand Down
2 changes: 2 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ defmodule ExJack.MixProject do

@source_url "https://github.com/fraihaav/ex_jack"
@version "0.28.3"
@description "JACK audio interface for Elixir using Rustler-based NIF."

def project do
[
app: :ex_jack,
version: @version,
source_url: @source_url,
description: @description,
elixir: "~> 1.13",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit e3fd4ba

Please sign in to comment.