mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
19 lines
471 B
Python
19 lines
471 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "agent",
|
||
|
srcs = [
|
||
|
"client.go",
|
||
|
"forward.go",
|
||
|
"keyring.go",
|
||
|
"server.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/golang.org/x/crypto/ssh/agent",
|
||
|
importpath = "golang.org/x/crypto/ssh/agent",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//vendor/golang.org/x/crypto/ed25519",
|
||
|
"//vendor/golang.org/x/crypto/ssh",
|
||
|
],
|
||
|
)
|