constellation/toolchains/pkg_deps.bzl
2023-01-31 17:55:09 +01:00

14 lines
504 B
Python

"""rules_pkg dependencies"""
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def pkg_deps():
http_archive(
name = "rules_pkg",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.8.0/rules_pkg-0.8.0.tar.gz",
"https://github.com/bazelbuild/rules_pkg/releases/download/0.8.0/rules_pkg-0.8.0.tar.gz",
],
sha256 = "eea0f59c28a9241156a47d7a8e32db9122f3d50b505fae0f33de6ce4d9b61834",
)