diff --git a/BUILD.bazel b/BUILD.bazel index 63c4e71..fe0d161 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -10,7 +10,7 @@ project(license = "gpl3-https") # outs = ["src/FFI/%s.hs" % "/".join([mod.capitalize() for mod in src[:-2].split("/")])], # cmd = "$(location //hs-apigen/tools:apigen) -hs $< > $@", # tools = ["//hs-apigen/tools:apigen"], -# tags = ["no-cross"], +# tags = ["no-cross", "haskell"], # ) for src in [ # "tox/tox.h", # ]] @@ -24,7 +24,10 @@ haskell_library( #":api_tox_tox", ], src_strip_prefix = "src", - tags = ["no-cross"], + tags = [ + "haskell", + "no-cross", + ], version = "0.2.19", visibility = ["//visibility:public"], deps = [ diff --git a/tools/BUILD.bazel b/tools/BUILD.bazel index d601a3e..dc84b1d 100644 --- a/tools/BUILD.bazel +++ b/tools/BUILD.bazel @@ -3,7 +3,10 @@ load("@rules_haskell//haskell:defs.bzl", "haskell_binary") haskell_binary( name = "groupbot", srcs = ["groupbot.hs"], - tags = ["no-cross"], + tags = [ + "haskell", + "no-cross", + ], visibility = ["//tools/haskell:__pkg__"], deps = [ "//hs-toxcore-c",