15 lines
322 B
Text
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",
|
|
],
|
|
)
|