blob: 13957b95b93fe44820ff0f16fd1cabb85865c7b3 [file] [log] [blame]
Leopold Schabel5c80aca2019-10-22 15:48:58 +02001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
Lorenz Brund13c1c62022-03-30 19:58:58 +02004 name = "devicemapper",
Lorenz Brunb9044c82021-08-24 11:59:47 +02005 srcs = [
6 "ctype.go",
7 "devicemapper.go",
8 ],
Tim Windelschmidt9f21f532024-05-07 15:14:20 +02009 importpath = "source.monogon.dev/osbase/devicemapper",
10 visibility = ["//visibility:public"],
Leopold Schabel5c80aca2019-10-22 15:48:58 +020011 deps = [
Lorenz Brund13c1c62022-03-30 19:58:58 +020012 "@com_github_pkg_errors//:errors",
13 "@com_github_yalue_native_endian//:native_endian",
14 "@org_golang_x_sys//unix",
Leopold Schabel5c80aca2019-10-22 15:48:58 +020015 ],
16)