about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tutorial/main/BUILD.bazel
blob: e2e7d3f42218b5ec91a2e989c042fe3feeef6cfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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",
    ],
)