mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
21 lines
559 B
Python
21 lines
559 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "helper",
|
||
|
srcs = [
|
||
|
"cleartext.go",
|
||
|
"helper.go",
|
||
|
"key.go",
|
||
|
"mobile.go",
|
||
|
"mobile_stream.go",
|
||
|
"sign_detached.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/ProtonMail/gopenpgp/v2/helper",
|
||
|
importpath = "github.com/ProtonMail/gopenpgp/v2/helper",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//vendor/github.com/ProtonMail/gopenpgp/v2/crypto",
|
||
|
"//vendor/github.com/pkg/errors",
|
||
|
],
|
||
|
)
|