diff --git a/BUILD.bazel b/BUILD.bazel index eb2ad63..69f7580 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -12,15 +12,14 @@ haskell_library( "-Werror", "-Wno-unused-imports", ], - prebuilt_dependencies = [ - "base", - "bytestring", - "containers", - "time", - ], src_strip_prefix = "src", + version = "0.1.1", visibility = ["//visibility:public"], deps = [ + "//third_party/haskell:base", + "//third_party/haskell:bytestring", + "//third_party/haskell:containers", + "//third_party/haskell:time", "@haskell_QuickCheck//:QuickCheck", "@haskell_aeson//:aeson", "@haskell_cryptohash//:cryptohash", @@ -55,12 +54,11 @@ haskell_test( "-Werror", "-Wno-unused-imports", ], - main_file = "test/testsuite.hs", - prebuilt_dependencies = ["base"], src_strip_prefix = "test", visibility = ["//visibility:public"], deps = [ ":github-tools", + "//third_party/haskell:base", "@haskell_QuickCheck//:QuickCheck", "@haskell_aeson//:aeson", "@haskell_hspec//:hspec",