snix/third_party/bazel/rules_haskell/tests/c-compiles-still/BUILD.bazel

15 lines
263 B
Text

load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_library",
)
package(default_testonly = 1)
haskell_library(
name = "foo",
srcs = ["Foo.hs"],
deps = [
"//tests/data:ourclibrary",
"//tests/hackage:base",
],
)