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",
],
)
|