diff options
| author | Jack Nagel | 2013-12-31 14:06:49 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-12-31 14:06:49 -0600 |
| commit | 1dc8ca62fd8d441cd03e5a5f8bc57473a4c38a74 (patch) | |
| tree | 6625b482f1a9481c1e0260819d3c70768adfbcab /Library/Formula | |
| parent | 0f56267c899834bfb4f72530114951439c81ab2c (diff) | |
| download | homebrew-1dc8ca62fd8d441cd03e5a5f8bc57473a4c38a74.tar.bz2 | |
rust: stable needs Xcode for gyp
HEAD vendors an up-to-date gyp that fixes this issue.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/rust.rb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Formula/rust.rb b/Library/Formula/rust.rb index 6107ad640..410da005d 100644 --- a/Library/Formula/rust.rb +++ b/Library/Formula/rust.rb @@ -2,8 +2,13 @@ require 'formula' class Rust < Formula homepage 'http://www.rust-lang.org/' - url 'http://static.rust-lang.org/dist/rust-0.8.tar.gz' - sha256 '42f791ab1537357fe0f63d67ffe6bcb64ecf16b2bd3f1484ab589823f5914182' + + stable do + url 'http://static.rust-lang.org/dist/rust-0.8.tar.gz' + sha256 '42f791ab1537357fe0f63d67ffe6bcb64ecf16b2bd3f1484ab589823f5914182' + + depends_on :xcode # for gyp; fixed in HEAD + end head 'https://github.com/mozilla/rust.git' |
