daml/security/BUILD.bazel
Moritz Kiefer 0d5443f8de
Drop direct dependencies on system-filepath (#12658)
That package has been deprecated for years and we don’t even use
it. The deps are just redundant.

changelog_begin
changelog_end
2022-01-31 10:04:07 +01:00

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"],
)