Skip to content

Commit

Permalink
Update how rules_apple is pulled. (bazelbuild#83)
Browse files Browse the repository at this point in the history
Part of the issues in bazelbuild#82
  • Loading branch information
thomasvl authored and laurentlb committed Dec 14, 2018
1 parent a812b98 commit 6a21ab3
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions tutorial/WORKSPACE
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
http_archive(
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

git_repository(
name = "build_bazel_rules_apple",
strip_prefix = "rules_apple-0.7.0",
urls = ["https://github.com/bazelbuild/rules_apple/archive/0.7.0.tar.gz"], # 2018-08-15
remote = "https://github.com/bazelbuild/rules_apple.git",
tag = "0.10.0",
)

load("@build_bazel_rules_apple//apple:repositories.bzl", "apple_rules_dependencies")
load(
"@build_bazel_rules_apple//apple:repositories.bzl",
"apple_rules_dependencies",
)

apple_rules_dependencies()

load(
"@build_bazel_rules_swift//swift:repositories.bzl",
"swift_rules_dependencies",
)

swift_rules_dependencies()

http_archive(
name = "io_bazel_rules_appengine",
sha256 = "d1fbc9a48332cc00b56d66751b5eb911ac9a88e820af7a2316a9b5ed4ee46d0b",
Expand Down

0 comments on commit 6a21ab3

Please sign in to comment.