blob: 765963f19fe055120aa62f9ca65a21ce31793c9e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_test",
)
package(default_testonly = 1)
haskell_test(
name = "binary-dynamic",
srcs = ["Main.hs"],
linkstatic = False,
visibility = ["//visibility:public"],
deps = ["//tests/hackage:base"],
)
|