Skip to content

Commit

Permalink
Merge ec3bc06 into 4334cec
Browse files Browse the repository at this point in the history
  • Loading branch information
iphydf committed Mar 8, 2018
2 parents 4334cec + ec3bc06 commit a34a072
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions BUILD.bazel
@@ -1,3 +1,35 @@
load("@io_tweag_rules_haskell//haskell:haskell.bzl", "haskell_library")
load("//tools:project.bzl", "project")

project("hs-toxcore")

haskell_library(
name = "hs-toxcore",
srcs = glob(["src/tox/**/*.*hs"]),
prebuilt_dependencies = [
"base",
"binary",
"bytestring",
"containers",
"integer-gmp",
"transformers",
],
src_strip_prefix = "src/tox",
visibility = ["//visibility:public"],
deps = [
"//hs-msgpack",
"//hs-msgpack-rpc",
"@haskell_MonadRandom//:MonadRandom",
"@haskell_QuickCheck//:QuickCheck",
"@haskell_base16_bytestring//:base16-bytestring",
"@haskell_binary_bits//:binary-bits",
"@haskell_clock//:clock",
"@haskell_entropy//:entropy",
"@haskell_iproute//:iproute",
"@haskell_lens_family//:lens-family",
"@haskell_mtl//:mtl",
"@haskell_network//:network",
"@haskell_random//:random",
"@haskell_saltine//:saltine",
],
)

0 comments on commit a34a072

Please sign in to comment.