|
| 1 | +load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| 2 | + |
| 3 | +def remote_deps(): |
| 4 | + http_archive( |
| 5 | + name = "bzip2", |
| 6 | + url = "https://crates-io.s3-us-west-1.amazonaws.com/crates/bzip2/bzip2-0.3.3.crate", |
| 7 | + sha256 = "42b7c3cbf0fa9c1b82308d57191728ca0256cb821220f4e2fd410a72ade26e3b", |
| 8 | + type = "tar.gz", |
| 9 | + strip_prefix = "bzip2-0.3.3", |
| 10 | + build_file = "@examples//hello_sys:bzip2-0.3.3.BUILD", |
| 11 | + ) |
| 12 | + |
| 13 | + http_archive( |
| 14 | + name = "bzip2_sys", |
| 15 | + url = "https://crates-io.s3-us-west-1.amazonaws.com/crates/bzip2-sys/bzip2-sys-0.1.9+1.0.8.crate", |
| 16 | + sha256 = "ad3b39a260062fca31f7b0b12f207e8f2590a67d32ec7d59c20484b07ea7285e", |
| 17 | + type = "tar.gz", |
| 18 | + strip_prefix = "bzip2-sys-0.1.9+1.0.8", |
| 19 | + build_file = "@examples//hello_sys:bzip2-sys-0.1.9+1.0.8.BUILD", |
| 20 | + ) |
| 21 | + |
| 22 | + http_archive( |
| 23 | + name = "cc", |
| 24 | + url = "https://crates-io.s3-us-west-1.amazonaws.com/crates/cc/cc-1.0.54.crate", |
| 25 | + sha256 = "7bbb73db36c1246e9034e307d0fba23f9a2e251faa47ade70c1bd252220c8311", |
| 26 | + type = "tar.gz", |
| 27 | + strip_prefix = "cc-1.0.54", |
| 28 | + build_file = "@examples//hello_sys:cc-1.0.54.BUILD", |
| 29 | + ) |
| 30 | + |
| 31 | + http_archive( |
| 32 | + name = "pkg_config", |
| 33 | + url = "https://crates-io.s3-us-west-1.amazonaws.com/crates/pkg-config/pkg-config-0.3.17.crate", |
| 34 | + sha256 = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677", |
| 35 | + type = "tar.gz", |
| 36 | + strip_prefix = "pkg-config-0.3.17", |
| 37 | + build_file = "@examples//hello_sys:pkg-config-0.3.17.BUILD", |
| 38 | + ) |
0 commit comments