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
8 changes: 7 additions & 1 deletion Formula/h/hof.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class Hof < Formula
url "https://github.com/hofstadter-io/hof/archive/refs/tags/v0.6.10.tar.gz"
sha256 "87703d19a23121a4b617f1359aed9616dceb6c79718245861835b61ccff7e1eb"
license "Apache-2.0"
head "https://github.com/hofstadter-io/hof.git", branch: "_dev"
head "https://github.com/hofstadter-io/hof.git", branch: "_next"

# Latest release tag contains `-beta`, which is not ideal
# adding a livecheck block to check the stable release
Expand All @@ -25,6 +25,12 @@ class Hof < Formula

depends_on "go" => :build

# patch to add Go 1.26 testDeps ModulePath, upstream pr ref, https://github.com/hofstadter-io/hof/pull/410
patch do
url "https://github.com/hofstadter-io/hof/commit/7d0389788a67be9bed36ab4d9ac8768b6890aff3.patch?full_index=1"
sha256 "662ef04018e749a0772ad099af209fc4e0caefba4ee0e7633be33182e0741dae"
end

def install
arch = Hardware::CPU.intel? ? "amd64" : Hardware::CPU.arch.to_s
os = OS.kernel_name.downcase
Expand Down
Loading