daml/daml-assistant/daml-helper/BUILD.bazel
moritzkiefer-da fd156c33df
Add daml start (#254)
* Add daml start
2019-04-05 19:34:23 +02:00

37 lines
915 B
Python

# Copyright (c) 2019 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
load('//bazel_tools:haskell.bzl', 'da_haskell_binary', 'da_haskell_library', 'da_haskell_test')
load('//bazel_tools:packaging/packaging.bzl', 'package_app')
da_haskell_binary(
name = "daml-helper",
srcs = ["DamlHelper.hs"],
deps = [
"//daml-assistant:daml-project-config",
],
hazel_deps = [
"aeson",
"async",
"base",
"directory",
"extra",
"filepath",
"http-client",
"http-types",
"monad-loops",
"network",
"optparse-applicative",
"process",
"safe-exceptions",
"text",
],
visibility = ["//visibility:public"],
)
package_app(
name = "daml-helper-dist",
binary = ":daml-helper",
visibility = ["//visibility:public"],
)