mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-04 00:42:53 +01:00
14 lines
321 B
Python
14 lines
321 B
Python
|
"""
|
||
|
Install various packages
|
||
|
"""
|
||
|
|
||
|
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
|
||
|
load("@com_github_bazelbuild_buildtools//buildifier:deps.bzl", "buildifier_dependencies")
|
||
|
|
||
|
def rules_misc_install_internal():
|
||
|
"""
|
||
|
Install various packages
|
||
|
"""
|
||
|
buildifier_dependencies()
|
||
|
protobuf_deps()
|