about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/package-id-clash-binary/BUILD.bazel
blob: d64a8909c5f5b1138c39a6136e10f9d3c75ed232 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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",
    ],
)