| Leopold Schabel | 5c80aca | 2019-10-22 15:48:58 +0200 | [diff] [blame] | 1 | load("@io_bazel_rules_go//go:def.bzl", "go_library") |
| 2 | |
| 3 | go_library( |
| Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 4 | name = "devicemapper", |
| Lorenz Brun | b9044c8 | 2021-08-24 11:59:47 +0200 | [diff] [blame] | 5 | srcs = [ |
| 6 | "ctype.go", |
| 7 | "devicemapper.go", |
| 8 | ], |
| Tim Windelschmidt | 9f21f53 | 2024-05-07 15:14:20 +0200 | [diff] [blame] | 9 | importpath = "source.monogon.dev/osbase/devicemapper", |
| 10 | visibility = ["//visibility:public"], |
| Leopold Schabel | 5c80aca | 2019-10-22 15:48:58 +0200 | [diff] [blame] | 11 | deps = [ |
| Lorenz Brun | d13c1c6 | 2022-03-30 19:58:58 +0200 | [diff] [blame] | 12 | "@com_github_pkg_errors//:errors", |
| 13 | "@com_github_yalue_native_endian//:native_endian", |
| 14 | "@org_golang_x_sys//unix", |
| Leopold Schabel | 5c80aca | 2019-10-22 15:48:58 +0200 | [diff] [blame] | 15 | ], |
| 16 | ) |