...

Text file src/edge-infra.dev/hack/deps/openbox.bzl

Documentation: edge-infra.dev/hack/deps

     1"""Fetches the openbox alpine package from a google storage bucket"""
     2
     3load("//hack/build/rules/google_storage:gsutil_file.bzl", "gsutil_file")
     4
     5def openbox_apk():
     6    """Returns a gsutil_file target for the openbox alpine package"""
     7
     8    gsutil_file(
     9        name = "openbox_apk",
    10        bucket = "sds-matrix-team-github-artifacts",
    11        path = "openbox/openbox-3.6.1-r7.apk",
    12        sha256 = "58ea7f0dcec6de257a0261313e47479ae6f919ae0a905985ac752ba370aa22c9",
    13    )

View as plain text