about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/multi_repl/a/BUILD.bazel
blob: 7d17e834a9cda4b797a3346b59ecab1c50d65d3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package(default_visibility = ["//visibility:public"])

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

haskell_library(
    name = "a",
    srcs = [
        "src/A/A.hs",
    ],
    src_strip_prefix = "src",
    deps = [
        "//tests/hackage:base",
    ],
)