snix/third_party/bazel/rules_haskell/tests/library-deps/sublib/BUILD.bazel

21 lines
365 B
Text

load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_library",
)
package(default_testonly = 1)
haskell_library(
name = "sublib",
srcs = ["TestSubLib.hs"],
visibility = ["//visibility:public"],
deps = [
":sublib-c",
"//tests/hackage:base",
],
)
cc_library(
name = "sublib-c",
srcs = ["sublib-c.c"],
)