about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tutorial/lib/BUILD.bazel
blob: 1afb9822419ccdde67a1e00db7f05f31990367db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_library",
)

haskell_library(
    name = "booleans",
    srcs = ["Bool.hs"],
    visibility = ["//main:__pkg__"],
)