mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
16 lines
480 B
Python
16 lines
480 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "purell",
|
||
|
srcs = ["purell.go"],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/PuerkitoBio/purell",
|
||
|
importpath = "github.com/PuerkitoBio/purell",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//vendor/github.com/PuerkitoBio/urlesc",
|
||
|
"//vendor/golang.org/x/text/unicode/norm",
|
||
|
"//vendor/golang.org/x/text/width",
|
||
|
"@org_golang_x_net//idna",
|
||
|
],
|
||
|
)
|