diff options
Diffstat (limited to 'vendor/cityhash/BUILD.bazel')
-rw-r--r-- | vendor/cityhash/BUILD.bazel | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/cityhash/BUILD.bazel b/vendor/cityhash/BUILD.bazel new file mode 100644 index 0000000..5e5349d --- /dev/null +++ b/vendor/cityhash/BUILD.bazel @@ -0,0 +1,15 @@ +# Copyright 2025 Steven Le Rouzic +# +# SPDX-License-Identifier: BSD-3-Clause + +load("@rules_license//rules:license.bzl", "license") + +license( + name = "license", + license_kinds = [ + "@rules_license//licenses/spdx:MIT", + ], + license_text = "LICENSE.txt", + package_name = "CityHash", + package_url = "https://github.com/google/cityhash", +) |