...

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

Documentation: edge-infra.dev/hack/deps

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

View as plain text