mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
14 lines
453 B
Python
14 lines
453 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "chroot",
|
|
srcs = ["chroot.go"],
|
|
importmap = "peridot.resf.org/vendor/github.com/go-git/go-billy/v5/helper/chroot",
|
|
importpath = "github.com/go-git/go-billy/v5/helper/chroot",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/go-git/go-billy/v5:go-billy",
|
|
"//vendor/github.com/go-git/go-billy/v5/helper/polyfill",
|
|
],
|
|
)
|