load("index.bzl", "hello") hello(name = "hello-world") load("archive.bzl", "zip", "tar") zip( name = "zip_example", srcs = [ ":BUILD.bazel", ":hello-world", ], ) tar( name = "tar_example", srcs = [ ":BUILD.bazel", ":hello-world", ], )