Marvin Preuss
d095180eb4
All checks were successful
continuous-integration/drone/push Build is passing
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
|
|
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
|
|
|
|
def rpmpack_dependencies():
|
|
go_rules_dependencies()
|
|
go_register_toolchains()
|
|
gazelle_dependencies()
|
|
|
|
go_repository(
|
|
name = "com_github_cavaliergopher_cpio",
|
|
importpath = "github.com/cavaliergopher/cpio",
|
|
sum = "h1:KQFSeKmZhv0cr+kawA3a0xTQCU4QxXF1vhU7P7av2KM=",
|
|
version = "v1.0.1",
|
|
)
|
|
go_repository(
|
|
name = "com_github_google_go_cmp",
|
|
importpath = "github.com/google/go-cmp",
|
|
sum = "h1:Xye71clBPdm5HgqGwUkwhbynsUJZhDbS20FvLhQ2izg=",
|
|
version = "v0.3.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_klauspost_compress",
|
|
importpath = "github.com/klauspost/compress",
|
|
sum = "h1:P76CopJELS0TiO2mebmnzgWaajssP/EszplttgQxcgc=",
|
|
version = "v1.13.6",
|
|
)
|
|
go_repository(
|
|
name = "com_github_pkg_errors",
|
|
importpath = "github.com/pkg/errors",
|
|
sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=",
|
|
version = "v0.9.1",
|
|
)
|
|
|
|
go_repository(
|
|
name = "com_github_ulikunitz_xz",
|
|
importpath = "github.com/ulikunitz/xz",
|
|
sum = "h1:t92gobL9l3HE202wg3rlk19F6X+JOxl9BBrCCMYEYd8=",
|
|
version = "v0.5.10",
|
|
)
|