mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 00:35:25 +03:00
fd156c33df
* Add daml start
37 lines
915 B
Python
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"],
|
|
)
|