blob: cf2aba515b690214d85045281d922772fef090ea (
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,
default_visibility = ["//visibility:public"],
)
haskell_test(
name = "binary-with-link-flags",
srcs = ["Main.hs"],
compiler_flags = ["-threaded"],
visibility = ["//visibility:public"],
deps = ["//tests/hackage:base"],
)
|