snix/third_party/bazel/rules_haskell/tests/multi_repl/BUILD.bazel

16 lines
340 B
Text

load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_repl",
)
haskell_repl(
name = "c_only_repl",
# To only load :c by source.
experimental_from_source = ["//tests/multi_repl/bc:c"],
deps = ["//tests/multi_repl/bc:c"],
)
haskell_repl(
name = "c_multi_repl",
deps = ["//tests/multi_repl/bc:c"],
)