1
1
mirror of https://github.com/github/semantic.git synced 2024-11-26 17:15:37 +03:00
semantic/semantic-parse/BUILD.bazel
2020-07-01 01:22:08 -04:00

29 lines
587 B
Python

package(default_visibility = ["//visibility:public"])
load(
"@rules_haskell//haskell:defs.bzl",
"haskell_binary",
)
load(
"//:build/common.bzl",
"GHC_FLAGS",
)
haskell_binary(
name = "exe",
srcs = ["app/Main.hs"],
compiler_flags = GHC_FLAGS,
deps = [
"//:base",
"//:bytestring",
"//:text",
"//semantic-ast",
"//semantic-python",
"//semantic-source",
"@stackage//:aeson",
"@stackage//:aeson-pretty",
"@stackage//:optparse-applicative",
"@stackage//:pretty-simple",
],
)