about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tools/coverage-reports/BUILD
blob: 6fd59e0ca0d588f58713c17432e1e2caa5a93599 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_binary",
)

haskell_binary(
    name = "coverage-report-renderer",
    srcs = ["Main.hs"],
    visibility = ["//visibility:public"],
    deps = [
        "@hackage//:MissingH",
        "@hackage//:base",
        "@hackage//:cmdargs",
        "@hackage//:directory",
        "@hackage//:filepath",
        "@hackage//:hxt",
        "@hackage//:hxt-xpath",
        "@hackage//:listsafe",
    ],
)