blob: 2395881786d4e322712b8a61a8967b4336e3aa72 [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"],
Hendrik Hofstadt0d7c91e2019-10-23 21:44:47 +02006 importpath = "git.monogon.dev/source/nexantic.git/core/pkg/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)