daml/compiler/repl-service/client/BUILD.bazel
Gary Verhaegen 1872c668a5
replace DAML Authors with DA in copyright headers (#5228)
Change requested by Manoj.

CHANGELOG_BEGIN
CHANGELOG_END
2020-03-27 01:26:10 +01:00

51 lines
1.2 KiB
Python

# Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
load("//bazel_tools:haskell.bzl", "da_haskell_library")
da_haskell_library(
name = "client",
srcs = glob(["src/**/*.hs"]),
hackage_deps = [
"async",
"base",
"binary",
"blaze-html",
"bytestring",
"conduit-extra",
"conduit",
"containers",
"cryptonite",
"deepseq",
"directory",
"extra",
"filepath",
"grpc-haskell",
"grpc-haskell-core",
"hashable",
"lens",
"mtl",
"process",
"proto3-suite",
"proto3-wire",
"split",
"stm",
"system-filepath",
"text",
"time",
"transformers",
"uri-encode",
"vector",
],
src_strip_prefix = "src",
visibility = ["//visibility:public"],
deps = [
"//compiler/daml-lf-ast",
"//compiler/daml-lf-proto",
"//compiler/repl-service/protos:repl_service_haskell_proto",
"//daml-assistant:daml-project-config",
"//libs-haskell/bazel-runfiles",
"//libs-haskell/da-hs-base",
],
)