mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
15 lines
465 B
Python
15 lines
465 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "compiler",
|
||
|
srcs = ["compiler.go"],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/gobwas/glob/compiler",
|
||
|
importpath = "github.com/gobwas/glob/compiler",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//vendor/github.com/gobwas/glob/match",
|
||
|
"//vendor/github.com/gobwas/glob/syntax/ast",
|
||
|
"//vendor/github.com/gobwas/glob/util/runes",
|
||
|
],
|
||
|
)
|