tvl-depot/third_party/bazel/rules_haskell/tutorial/main/BUILD.bazel

17 lines
318 B
Text

load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_test",
"haskell_toolchain_library",
)
haskell_toolchain_library(name = "base")
haskell_test(
name = "demorgan",
srcs = ["Main.hs"],
compiler_flags = ["-threaded"],
deps = [
":base",
"//lib:booleans",
],
)