daml/notices-gen/BUILD.bazel

22 lines
487 B
Python
Raw Normal View History

# Copyright (c) 2020 The DAML Authors. All rights reserved.
2019-04-04 11:33:38 +03:00
# SPDX-License-Identifier: Apache-2.0
load("//bazel_tools:haskell.bzl", "da_haskell_binary")
2019-04-04 11:33:38 +03:00
da_haskell_binary(
name = "notices-gen",
srcs = glob(["src/**/*.hs"]),
hackage_deps = [
2019-04-04 11:33:38 +03:00
"base",
"bytestring",
"http-conduit",
"utf8-string",
"Cabal",
"process",
"xml",
],
src_strip_prefix = "src",
2019-04-04 11:33:38 +03:00
visibility = ["//visibility:public"],
deps = [],
2019-04-04 11:33:38 +03:00
)