mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-05-02 03:02:54 -04:00
* Add version linking to binaries via --workspace_status_command=./scripts/workspace_status.sh * dont export some things * lint and better date * even better date
13 lines
333 B
Python
13 lines
333 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["version.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/version",
|
|
visibility = ["//visibility:public"],
|
|
x_defs = {
|
|
"gitCommit": "{STABLE_GIT_COMMIT}",
|
|
"buildDate": "{DATE}",
|
|
},
|
|
)
|