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