1
1
mirror of https://github.com/github/semantic.git synced 2024-12-04 20:27:03 +03:00
semantic/semantic-proto/BUILD.bazel
2020-07-01 01:22:08 -04:00

26 lines
541 B
Python

package(default_visibility = ["//visibility:public"])
load(
"@rules_haskell//haskell:defs.bzl",
"haskell_binary",
"haskell_library",
)
load(
"@rules_haskell//haskell:cabal.bzl",
"haskell_cabal_binary",
"haskell_cabal_library",
)
haskell_library(
name = "semantic-proto",
srcs = glob(["src/**/*.hs"]),
deps = [
"//:base",
"//:text",
"@stackage//:aeson",
"@stackage//:proto-lens",
"@stackage//:proto-lens-jsonpb",
"@stackage//:proto-lens-runtime",
],
)