about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/binary-with-prebuilt/BUILD.bazel
blob: 99a22ae9991f61285345a08afa8e7bcfd84e4734 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_test",
)

package(default_testonly = 1)

haskell_test(
    name = "binary-with-prebuilt",
    srcs = ["Main.hs"],
    tags = ["requires_hackage"],
    visibility = ["//visibility:public"],
    deps = [
        "//tests/hackage:base",
        "//tests/hackage:template-haskell",
        "@hackage//:streaming",
        "@hackage//:void",
    ],
)