mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
878429e3bf
copyright update 2020 * update template * run script: `dade-copyright-headers update .` * update script * manual adjustments * exclude frozen proto files from further header checks (by adding NO_AUTO_COPYRIGHT files)
60 lines
1.3 KiB
Python
60 lines
1.3 KiB
Python
# Copyright (c) 2020 The DAML Authors. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
load("//bazel_tools:haskell.bzl", "da_haskell_binary")
|
|
load("util.bzl", "sdk_tarball")
|
|
|
|
da_haskell_binary(
|
|
name = "release",
|
|
srcs = glob(["src/**/*.hs"]),
|
|
hackage_deps = [
|
|
"aeson",
|
|
"async",
|
|
"ansi-terminal",
|
|
"base",
|
|
"base64-bytestring",
|
|
"bytestring",
|
|
"conduit",
|
|
"conduit-extra",
|
|
"containers",
|
|
"connection",
|
|
"cryptohash",
|
|
"directory",
|
|
"exceptions",
|
|
"extra",
|
|
"fast-logger",
|
|
"filepath",
|
|
"http-client",
|
|
"http-client-tls",
|
|
"http-conduit",
|
|
"http-types",
|
|
"lifted-async",
|
|
"lifted-base",
|
|
"monad-control",
|
|
"monad-logger",
|
|
"optparse-applicative",
|
|
"path",
|
|
"path-io",
|
|
"process",
|
|
"retry",
|
|
"safe",
|
|
"safe-exceptions",
|
|
"time",
|
|
"text",
|
|
"temporary",
|
|
"transformers",
|
|
"unliftio-core",
|
|
"unordered-containers",
|
|
"yaml",
|
|
"mtl",
|
|
"xml-conduit",
|
|
],
|
|
src_strip_prefix = "src",
|
|
visibility = ["//visibility:public"],
|
|
deps = [],
|
|
)
|
|
|
|
sdk_tarball("sdk-release-tarball", "//:VERSION")
|
|
|
|
sdk_tarball("sdk-head-tarball", ":HEAD-VERSION")
|