mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 00:35:25 +03:00
4001f5c9bd
* Conduitify download in release file Apologies, my ocd kicked in when I saw this in another PR. changelog_begin changelog_end * fixup deps changelog_begin changelog_end * i should stop working changelog_begin changelog_end
50 lines
1.1 KiB
Python
50 lines
1.1 KiB
Python
# Copyright (c) 2021 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_binary(
|
|
name = "cron",
|
|
srcs = glob(["src/**/*.hs"]),
|
|
hackage_deps = [
|
|
"aeson",
|
|
"async",
|
|
"base",
|
|
"bytestring",
|
|
"conduit",
|
|
"conduit-extra",
|
|
"case-insensitive",
|
|
"containers",
|
|
"directory",
|
|
"extra",
|
|
"filepath",
|
|
"http-conduit",
|
|
"http-client",
|
|
"http-client-tls",
|
|
"http-types",
|
|
"monad-loops",
|
|
"network-uri",
|
|
"optparse-applicative",
|
|
"process",
|
|
"proto3-suite",
|
|
"regex-tdfa",
|
|
"resourcet",
|
|
"retry",
|
|
"safe",
|
|
"safe-exceptions",
|
|
"semver",
|
|
"split",
|
|
"stm",
|
|
"stm-chans",
|
|
"stm-conduit",
|
|
"text",
|
|
"time",
|
|
"unordered-containers",
|
|
"utf8-string",
|
|
"vector",
|
|
],
|
|
src_strip_prefix = "src",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//3rdparty/haskell:remote_apis"],
|
|
)
|