build/binary_tarball: rename from static_binary_tarball

The static_binary_tarball rule no longer has a transition to build
statically, so the "static" part of the name is not meaningful anymore.

Change-Id: Ifaecf2f7846a963d957d4bfcc89a3d9e7e911f5c
Reviewed-on: https://review.monogon.dev/c/monogon/+/4415
Tested-by: Jenkins CI
Reviewed-by: Tim Windelschmidt <tim@monogon.tech>
diff --git a/metropolis/test/e2e/selftest/BUILD.bazel b/metropolis/test/e2e/selftest/BUILD.bazel
index 31754d6..fa2c09a 100644
--- a/metropolis/test/e2e/selftest/BUILD.bazel
+++ b/metropolis/test/e2e/selftest/BUILD.bazel
@@ -1,6 +1,6 @@
 load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
 load("@rules_oci//oci:defs.bzl", "oci_image")
-load("//build/static_binary_tarball:def.bzl", "static_binary_tarball")
+load("//build/binary_tarball:def.bzl", "binary_tarball")
 
 go_library(
     name = "selftest_lib",
@@ -15,7 +15,7 @@
     visibility = ["//visibility:private"],
 )
 
-static_binary_tarball(
+binary_tarball(
     name = "selftest_layer",
     executable = ":selftest",
     visibility = ["//visibility:private"],