diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/nsq.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/nsq.rb b/Library/Formula/nsq.rb index cf9a44210..45da80516 100644 --- a/Library/Formula/nsq.rb +++ b/Library/Formula/nsq.rb @@ -2,8 +2,8 @@ require "formula" class Nsq < Formula homepage "http://bitly.github.io/nsq" - url "https://github.com/bitly/nsq/archive/v0.2.24.tar.gz" - sha1 "9f1dbaffd8c0a49715555b722df745d228bbb868" + url "https://github.com/bitly/nsq/archive/v0.2.27.tar.gz" + sha1 "3d8a1d28d76e3ea8e788192b0e9a39800b112791" depends_on "go" => :build depends_on :hg # some package dependencies are mercurial repos @@ -14,7 +14,9 @@ class Nsq < Formula end def install - (buildpath + "src/github.com/bitly/nsq").install "util" + # build a proper GOPATH tree for local dependencies + (buildpath + "src/github.com/bitly/nsq").install "util", "nsqlookupd" + (buildpath + "src/github.com/bitly/nsq/nsqadmin").install "nsqadmin/templates" => "templates" # godep is only needed to *build* so don't install somewhere permanent buildpath.install resource("godep") |
