aboutsummaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
blob: 6c6c8d8bd58e29ef31ffe08b56b6fb4947e7353f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
new_http_archive(
    name = "rust-linux-x86_64",
    url = "https://static.rust-lang.org/dist/rust-1.3.0-x86_64-unknown-linux-gnu.tar.gz",
    sha256 = "fa755b6331ff7554e6e8545ee20af7897b0adc65f471dd24ae8a467a944755b4",
    build_file = "tools/build_rules/rust/rust.BUILD",
    strip_prefix = "rust-1.3.0-x86_64-unknown-linux-gnu",
)

new_http_archive(
    name = "rust-darwin-x86_64",
    url = "https://static.rust-lang.org/dist/rust-1.3.0-x86_64-apple-darwin.tar.gz",
    sha256 = "bfeac876e22cc5fe63a250644ce1a6f3892c13a5461131a881419bd06fcb2011",
    build_file = "tools/build_rules/rust/rust.BUILD",
    strip_prefix = "rust-1.3.0-x86_64-apple-darwin",
)

# In order to run the Android integration tests, uncomment these rules, point
# them to the Android NDK and the SDK, and point the bind rules under them
# to @repository//:files .
# android_sdk_repository(
#     name = "androidsdk",
#     path = "/path/to/sdk",
#     # Available versions are under build-tools/.
#     build_tools_version = "21.1.1",
#     # Available versions are under platforms/.
#     api_level = 19,
# )

# android_ndk_repository(
#     name = "androidndk",
#     path = "/path/to/ndk",
#     api_level = 19,  # Set this to the SDK's api_level.
# )

bind(
    name = "android_sdk_for_testing",
    # Uncomment and delete the //:dummy line to run integration tests.
#   actual = "@androidsdk//:files",
    actual = "//:dummy",
)

bind(
    name = "android_ndk_for_testing",
    # Uncomment and delete the //:dummy line to run integration tests.
#   actual = "@androidndk//:files",
    actual = "//:dummy",
)

new_http_archive(
    name = "dmd-linux-x86_64",
    url = "http://downloads.dlang.org/releases/2.x/2.067.1/dmd.2.067.1.linux.zip",
    sha256 = "a5014886773853b4a42df19ee9591774cf281d33fbc511b265df30ba832926cd",
    build_file = "tools/build_defs/d/dmd.BUILD",
)

new_http_archive(
    name = "dmd-darwin-x86_64",
    url = "http://downloads.dlang.org/releases/2.x/2.067.1/dmd.2.067.1.osx.zip",
    sha256 = "aa76bb83c38b3f7495516eb08977fc9700c664d7a945ba3ac3c0004a6a8509f2",
    build_file = "tools/build_defs/d/dmd.BUILD",
)

new_git_repository(
    name = "jsonnet",
    remote = "https://github.com/google/jsonnet.git",
    tag = "v0.8.0",
    build_file = "tools/build_defs/jsonnet/jsonnet.BUILD",
)

new_http_archive(
    name = "libsass",
    url = "https://github.com/sass/libsass/archive/3.3.0-beta1.tar.gz",
    sha256 = "6a4da39cc0b585f7a6ee660dc522916f0f417c890c3c0ac7ebbf6a85a16d220f",
    build_file = "tools/build_defs/sass/libsass.BUILD",
)

new_http_archive(
    name = "sassc",
    url = "https://github.com/sass/sassc/archive/3.3.0-beta1.tar.gz",
    sha256 = "87494218eea2441a7a24b40f227330877dbba75c5fa9014ac6188711baed53f6",
    build_file = "tools/build_defs/sass/sassc.BUILD",
)

bind(name  = "go_prefix",
  actual = "//:go_prefix",
)

new_http_archive(
  name=  "golang-linux-amd64",
  url = "https://storage.googleapis.com/golang/go1.5.1.linux-amd64.tar.gz",
  build_file = "tools/build_rules/go/toolchain/BUILD.go-toolchain",
  sha256 = "2593132ca490b9ee17509d65ee2cd078441ff544899f6afb97a03d08c25524e7"
)