thii / apple_support

Apple support for Bazel rules

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Apple Support for Bazel

Build Status

This repository contains helper methods that support building rules that target Apple platforms.

Quick setup

Add the following to your WORKSPACE file to add this repository as a dependency:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "build_bazel_apple_support",
    sha256 = "76df040ade90836ff5543888d64616e7ba6c3a7b33b916aa3a4b68f342d1b447",
    url = "https://github.com/bazelbuild/apple_support/releases/download/0.11.0/apple_support.0.11.0.tar.gz",
)

load(
    "@build_bazel_apple_support//lib:repositories.bzl",
    "apple_support_dependencies",
)

apple_support_dependencies()

About

Apple support for Bazel rules

License:Apache License 2.0


Languages

Language:Starlark 88.4%Language:Shell 11.6%