summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/examples/primitive/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/examples/primitive/BUILD.bazel')
-rw-r--r--third_party/bazel/rules_haskell/examples/primitive/BUILD.bazel33
1 files changed, 0 insertions, 33 deletions
diff --git a/third_party/bazel/rules_haskell/examples/primitive/BUILD.bazel b/third_party/bazel/rules_haskell/examples/primitive/BUILD.bazel
deleted file mode 100644
index 798e55f29b..0000000000
--- a/third_party/bazel/rules_haskell/examples/primitive/BUILD.bazel
+++ /dev/null
@@ -1,33 +0,0 @@
-load(
-    "@io_tweag_rules_haskell//haskell:haskell.bzl",
-    "haskell_cc_import",
-    "haskell_library",
-    "haskell_toolchain_library",
-)
-
-haskell_toolchain_library(name = "base")
-
-haskell_toolchain_library(name = "ghc-prim")
-
-cc_library(
-    name = "memops",
-    srcs = ["cbits/primitive-memops.c"],
-    hdrs = ["cbits/primitive-memops.h"],
-    deps = ["@ghc//:threaded-rts"],
-)
-
-haskell_library(
-    name = "primitive",
-    srcs = glob([
-        "Data/**/*.hs",
-        "Control/**/*.hs",
-    ]),
-    version = "0",
-    visibility = ["//visibility:public"],
-    deps = [
-        ":base",
-        ":ghc-prim",
-        ":memops",
-        "//transformers",
-    ],
-)