mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
22 lines
545 B
Python
22 lines
545 B
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 = "evidence-security",
|
||
|
srcs = glob(["EvidenceSecurity.hs"]),
|
||
|
hackage_deps = [
|
||
|
"base",
|
||
|
"containers",
|
||
|
"extra",
|
||
|
"filepath",
|
||
|
"megaparsec",
|
||
|
"split",
|
||
|
"system-filepath",
|
||
|
"text",
|
||
|
],
|
||
|
src_strip_prefix = "src",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|