about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/package-id-clash/sublib/BUILD.bazel
blob: e5d277c2a254e65cdef7949cb93635fbf550aa19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_library",
)

package(default_testonly = 1)

haskell_library(
    name = "sublib",
    srcs = ["Bar.hs"],
    visibility = ["//visibility:public"],
    deps = ["//tests/hackage:base"],
)