mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-27 23:46:25 +00:00
14 lines
456 B
Python
14 lines
456 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "hcl",
|
|
srcs = ["codec.go"],
|
|
importmap = "peridot.resf.org/vendor/github.com/spf13/viper/internal/encoding/hcl",
|
|
importpath = "github.com/spf13/viper/internal/encoding/hcl",
|
|
visibility = ["//vendor/github.com/spf13/viper:__subpackages__"],
|
|
deps = [
|
|
"//vendor/github.com/hashicorp/hcl",
|
|
"//vendor/github.com/hashicorp/hcl/hcl/printer",
|
|
],
|
|
)
|