blob: 12ca0b31d30c602a9e9ba45d78c1263f0c406dab [file] [log] [blame]
Leopold Schabel5c80aca2019-10-22 15:48:58 +02001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "go_default_library",
5 srcs = ["devicemapper.go"],
Serge Bazanski77cb6c52020-12-19 00:09:22 +01006 importpath = "git.monogon.dev/source/nexantic.git/metropolis/node/common/devicemapper",
Leopold Schabel5c80aca2019-10-22 15:48:58 +02007 visibility = ["//visibility:public"],
8 deps = [
9 "@com_github_pkg_errors//:go_default_library",
10 "@com_github_yalue_native_endian//:go_default_library",
11 "@org_golang_x_sys//unix:go_default_library",
12 ],
13)