aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/systemlibs/cython.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/systemlibs/cython.BUILD')
-rw-r--r--third_party/systemlibs/cython.BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/systemlibs/cython.BUILD b/third_party/systemlibs/cython.BUILD
new file mode 100644
index 0000000000..1d52587676
--- /dev/null
+++ b/third_party/systemlibs/cython.BUILD
@@ -0,0 +1,13 @@
+licenses(["notice"]) # Apache-2.0
+
+genrule(
+ name = "lncython",
+ outs = ["cython"],
+ cmd = "ln -s $$(which cython) $@",
+)
+
+sh_binary(
+ name = "cython_binary",
+ srcs = ["cython"],
+ visibility = ["//visibility:public"],
+)