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
5 changes: 5 additions & 0 deletions Formula/wn.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# frozen_string_literal: true

# White Noise CLI (`wn` and `wnd`) built from the marmot-protocol/mdk workspace.
Expand All @@ -10,9 +10,14 @@

head "https://github.com/marmot-protocol/mdk.git", branch: "master"

depends_on "pkgconf" => :build
depends_on "rust" => :build
depends_on "openssl@3"

Check warning on line 15 in Formula/wn.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-15-intel)

wn: new dependency impact

Adding `openssl@3` adds 2 new recursive dependencies on sequoia (38.3MB).

Check warning on line 15 in Formula/wn.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-latest, ghcr.io/homebrew/brew:main)

wn: new dependency impact

Adding `openssl@3` adds 2 new recursive dependencies on x86_64_linux (42.9MB).

Check warning on line 15 in Formula/wn.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-26)

wn: new dependency impact

Adding `openssl@3` adds 2 new recursive dependencies on arm64_tahoe (37.9MB).

def install
# rusqlite pulls SQLCipher, whose openssl-sys build script locates the
# OpenSSL crypto lib via pkgconf. macOS build envs supply it implicitly;
# minimal Linux containers do not, so declare it explicitly for both.
system "cargo", "install", *std_cargo_args(path: "crates/cli"), "--bins"
end

Expand Down
Loading