mirror of
https://github.com/haskell/ghcide.git
synced 2024-12-17 15:11:41 +03:00
42 lines
876 B
Python
42 lines
876 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 = "haskell-ide-core"
|
|
, srcs = glob(["src/**/*.hs"])
|
|
, src_strip_prefix = "src"
|
|
, deps = [
|
|
"//libs-haskell/prettyprinter-syntax",
|
|
]
|
|
, hazel_deps = [
|
|
"aeson",
|
|
"base",
|
|
"binary",
|
|
"bytestring",
|
|
"containers",
|
|
"deepseq",
|
|
"directory",
|
|
"either",
|
|
"extra",
|
|
"filepath",
|
|
"ghc-lib",
|
|
"ghc-lib-parser",
|
|
"hashable",
|
|
"mtl",
|
|
"pretty",
|
|
"safe-exceptions",
|
|
"shake",
|
|
"stm",
|
|
"syb",
|
|
"text",
|
|
"time",
|
|
"transformers",
|
|
"uniplate",
|
|
"unordered-containers",
|
|
"uri-encode",
|
|
]
|
|
, visibility = ["//visibility:public"]
|
|
)
|