about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/examples/transformers/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/examples/transformers/BUILD.bazel')
-rw-r--r--third_party/bazel/rules_haskell/examples/transformers/BUILD.bazel19
1 files changed, 0 insertions, 19 deletions
diff --git a/third_party/bazel/rules_haskell/examples/transformers/BUILD.bazel b/third_party/bazel/rules_haskell/examples/transformers/BUILD.bazel
deleted file mode 100644
index 092111f9f1..0000000000
--- a/third_party/bazel/rules_haskell/examples/transformers/BUILD.bazel
+++ /dev/null
@@ -1,19 +0,0 @@
-load(
-    "@io_tweag_rules_haskell//haskell:haskell.bzl",
-    "haskell_cc_import",
-    "haskell_library",
-    "haskell_toolchain_library",
-)
-
-haskell_toolchain_library(name = "base")
-
-haskell_library(
-    name = "transformers",
-    srcs = glob([
-        "Data/**/*.hs",
-        "Control/**/*.hs",
-    ]),
-    version = "0",
-    visibility = ["//visibility:public"],
-    deps = [":base"],
-)