Skip to content

Commit

Permalink
Use hazel to manage Haskell package versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
iphydf committed Aug 26, 2018
1 parent 1a9fce4 commit 78cad67
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
load("@ai_formation_hazel//:hazel.bzl", "hazel_library")
load("@io_tweag_rules_haskell//haskell:haskell.bzl", "haskell_library", "haskell_test")
load("//tools/project:build_defs.bzl", "project")

Expand All @@ -17,15 +18,15 @@ haskell_library(
version = "0.0.2",
visibility = ["//visibility:public"],
deps = [
"//third_party/haskell:base",
"//third_party/haskell:bytestring",
"//third_party/haskell:containers",
"//third_party/haskell:deepseq",
"//third_party/haskell:text",
"@haskell_QuickCheck//:QuickCheck",
"@haskell_hashable//:hashable",
"@haskell_unordered_containers//:unordered-containers",
"@haskell_vector//:vector",
hazel_library("QuickCheck"),
hazel_library("base"),
hazel_library("bytestring"),
hazel_library("containers"),
hazel_library("deepseq"),
hazel_library("hashable"),
hazel_library("text"),
hazel_library("unordered-containers"),
hazel_library("vector"),
],
)

Expand All @@ -40,8 +41,8 @@ haskell_test(
src_strip_prefix = "test",
deps = [
":hs-msgpack-types",
"//third_party/haskell:base",
"@haskell_QuickCheck//:QuickCheck",
"@haskell_hspec//:hspec",
hazel_library("QuickCheck"),
hazel_library("base"),
hazel_library("hspec"),
],
)

0 comments on commit 78cad67

Please sign in to comment.