mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
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}",
|
||
|
},
|
||
|
)
|