daml/compiler/daml-lf-ast/BUILD.bazel
Martin Huschenbett 6e73868220 Replace all occurrences of Tagged in DAML-LF AST with newtypes (#1289)
* Replace all occurrences of Tagged in DAML-LF AST with newtypes

This must end as it makes the code bases harder to understand without
adding any benefits.

* Add two more usages of mkVal

* Remove Orphans.Lib_hashable

* Remove tagged from package dependencies

* Derive stock classes as such
2019-05-21 16:19:57 +00:00

31 lines
715 B
Python

# Copyright (c) 2019 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
load("//bazel_tools:haskell.bzl", "da_haskell_library")
da_haskell_library(
name = "daml-lf-ast",
srcs = glob(["src/**/*.hs"]),
hazel_deps = [
"base",
"containers",
"deepseq",
"extra",
"hashable",
"lens",
"mtl",
"recursion-schemes",
"safe",
"scientific",
"template-haskell",
"text",
"time",
"unordered-containers",
],
src_strip_prefix = "src",
visibility = ["//visibility:public"],
deps = [
"//libs-haskell/da-hs-base",
],
)