blob: 02c3a6b36d3f8a1feeb02f3fae1d84fa1b51277e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_library",
"haskell_toolchain_library",
)
haskell_library(
name = "foo",
srcs = ["Foo.hs"],
visibility = ["//visibility:public"],
deps = ["//tests/hackage:base"],
)
|