snix/third_party/bazel/rules_haskell/tests/package-id-clash-binary/BUILD.bazel

15 lines
322 B
Text

load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_test",
"haskell_toolchain_library",
)
haskell_test(
name = "bin",
srcs = ["Main.hs"],
deps = [
"//tests/hackage:base",
"//tests/package-id-clash-binary/a:foo",
"//tests/package-id-clash-binary/b:foo",
],
)