daml/compiler/daml-lf-tools/BUILD.bazel

30 lines
668 B
Python
Raw Normal View History

2019-08-13 19:23:03 +03:00
# Copyright (c) 2019 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_library")
2019-04-04 11:33:38 +03:00
da_haskell_library(
2019-04-04 11:33:38 +03:00
name = "daml-lf-tools",
srcs = glob(["src/**/*.hs"]),
hackage_deps = [
2019-04-04 11:33:38 +03:00
"base",
"containers",
"either",
"extra",
"hashable",
2019-04-04 11:33:38 +03:00
"lens",
"mtl",
"recursion-schemes",
"safe",
"text",
"uniplate",
"unordered-containers",
],
src_strip_prefix = "src",
2019-04-04 11:33:38 +03:00
visibility = ["//visibility:public"],
deps = [
"//compiler/daml-lf-ast",
"//libs-haskell/da-hs-base",
],
2019-04-04 11:33:38 +03:00
)