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

package(default_testonly = 1)

haskell_test(
    name = "binary-with-sysdeps",
    srcs = ["Main.hs"],
    tags = ["requires_zlib"],
    visibility = ["//visibility:public"],
    deps = [
        "//tests/hackage:base",
        "@zlib",
    ],
)