mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
14 lines
335 B
Python
14 lines
335 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "blowfish",
|
||
|
srcs = [
|
||
|
"block.go",
|
||
|
"cipher.go",
|
||
|
"const.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/golang.org/x/crypto/blowfish",
|
||
|
importpath = "golang.org/x/crypto/blowfish",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|