Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions scripts/templates/deepgram.rb.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ class Deepgram < Formula
sha256 "{{TARBALL_SHA256}}"
license "MIT"

# Build-time deps for the `cryptography` and `pydantic_core` resources,
# which compile Rust extensions via `maturin`. Language::Python::Virtualenv
# defaults to --no-binary :all: so precompiled wheels are bypassed and the
# Rust toolchain has to be available during install.
depends_on "pkgconf" => :build
depends_on "rust" => :build

# Used by `dg debug probe`, `dg ffprobe`, and raw-audio streaming flows
# (e.g. `ffmpeg ... | dg listen --encoding linear16`).
depends_on "ffmpeg"
Expand Down
Loading