about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/binary-with-indirect-sysdeps/BUILD.bazel
blob: 195288882b1a2d180843bdeeb53e3ad0d5dff9a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_library",
    "haskell_test",
)

package(default_testonly = 1)

haskell_library(
    name = "hs-lib",
    srcs = ["HsLib.hs"],
    tags = ["requires_zlib"],
    deps = [
        "//tests/hackage:base",
        "@zlib.dev//:zlib",
    ],
)

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