Skip to content

Commit

Permalink
Correct module name and repo_name
Browse files Browse the repository at this point in the history
Signed-off-by: Matthieu MOREL <[email protected]>
  • Loading branch information
mmorel-35 committed May 25, 2024
1 parent 9d45a1b commit 005ef01
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module(name = "com_github_nelhage_rules_boost")
module(name = "rules_boost", repo_name = "com_github_nelhage_rules_boost")

bazel_dep(name = "bazel_skylib", version = "1.6.1")
bazel_dep(name = "boringssl", version = "0.0.0-20240530-2db0eb3")
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Copy this into your Bazel `MODULE.bazel` file to add this repo as an external de
# Famous C++ library that has given rise to many new additions to the C++ Standard Library
# Makes @boost available for use: For example, add `@boost//:algorithm` to your deps.
# For more, see https://github.com/nelhage/rules_boost and https://www.boost.org
bazel_dep(name = "com_github_nelhage_rules_boost")
bazel_dep(name = "rules_boost", name = "com_github_nelhage_rules_boost")
archive_override(
module_name = "com_github_nelhage_rules_boost",
module_name = "rules_boost",
urls = "https://github.com/nelhage/rules_boost/archive/refs/heads/master.tar.gz",
strip_prefix = "rules_boost-master",
# It is recommended to edit the above URL and the below sha256 to point to a specific version of this repository.
Expand Down
4 changes: 2 additions & 2 deletions test/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bazel_dep(name = "com_github_nelhage_rules_boost")
bazel_dep(name = "rules_boost", repo_name = "com_github_nelhage_rules_boost")
local_path_override(
module_name = "com_github_nelhage_rules_boost",
module_name = "rules_boost",
path = "..",
)

Expand Down

0 comments on commit 005ef01

Please sign in to comment.