mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-05 03:56:26 +03:00
0d5443f8de
That package has been deprecated for years and we don’t even use it. The deps are just redundant. changelog_begin changelog_end
21 lines
518 B
Python
21 lines
518 B
Python
# Copyright (c) 2022 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 = "evidence-security",
|
|
srcs = glob(["EvidenceSecurity.hs"]),
|
|
hackage_deps = [
|
|
"base",
|
|
"containers",
|
|
"extra",
|
|
"filepath",
|
|
"megaparsec",
|
|
"split",
|
|
"text",
|
|
],
|
|
src_strip_prefix = "src",
|
|
visibility = ["//visibility:public"],
|
|
)
|