The Wayback Machine - https://web.archive.org/web/20220306031620/https://github.com/topics/bazel-rules
Skip to content
#

bazel-rules

Here are 182 public repositories matching this topic...

facundominguez
facundominguez commented Feb 1, 2022

The documentation of the hidden_modules attribute of the haskell_library rules currently says:

Modules that should be unavailable for import by dependencies.

The text itself is wrong, since dependencies of the haskell_library rule cannot import any modules of it. But there are also a couple of situations that need to be explained.

Non-existent modules

The following in

Michaelhobo
Michaelhobo commented May 9, 2021

Is there more documentation (preferably with examples) for using string_list_setting? I'm trying to pass defines to a cc_library rule, like this:

cc_library(
  name = "...",
  defines = ":nrf_defines",
)

string_list_setting(
  name = "nrf_defines",
  build_setting_default = [],
)

When I build this, cc_library rules spit out the error:

expected value of type 'list(s

Improve this page

Add a description, image, and links to the bazel-rules topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the bazel-rules topic, visit your repo's landing page and select "manage topics."

Learn more