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