about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/external-haskell-repository/BUILD.bazel
blob: 30ff35704050dcca7c6f7ea78b70d4dacc9e0915 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Tests correct linking of haskell packages that were created
# in a different bazel repository, e.g. with hazel.

load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_test",
)

haskell_test(
    name = "external-haskell-repository",
    srcs = ["Main.hs"],
    visibility = ["//visibility:public"],
    deps = [
        "//tests/hackage:base",
        "@haskell_package_repository_dummy//:library-with-cbits",
    ],
)