snix/third_party/bazel/rules_haskell/tests/binary-with-main/BUILD.bazel

14 lines
307 B
Text

load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_test",
)
package(default_testonly = 1)
haskell_test(
name = "binary-with-main",
srcs = ["MainIsHere.hs"],
main_function = "MainIsHere.this",
visibility = ["//visibility:public"],
deps = ["//tests/hackage:base"],
)