diff options
author | Vincent Ambo <tazjin@google.com> | 2019-08-15T15·11+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-08-15T15·11+0100 |
commit | 128875b501bc2989617ae553317b80faa556d752 (patch) | |
tree | 9b32d12123801179ebe900980556486ad4803482 /third_party/bazel/rules_haskell/docs/BUILD.bazel | |
parent | a20daf87265a62b494d67f86d4a5199f14394973 (diff) |
chore: Remove remaining Bazel-related files r/31
Diffstat (limited to 'third_party/bazel/rules_haskell/docs/BUILD.bazel')
-rw-r--r-- | third_party/bazel/rules_haskell/docs/BUILD.bazel | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/third_party/bazel/rules_haskell/docs/BUILD.bazel b/third_party/bazel/rules_haskell/docs/BUILD.bazel deleted file mode 100644 index e21093c8ec6c..000000000000 --- a/third_party/bazel/rules_haskell/docs/BUILD.bazel +++ /dev/null @@ -1,46 +0,0 @@ -load("@io_bazel_skydoc//skylark:skylark.bzl", "skylark_doc") - -genrule( - name = "guide_html", - srcs = ["conf.py"] + glob(["*.rst"]), - outs = ["guide_html.zip"], - cmd = """ - set -euo pipefail - # Nixpkgs_rules are pointing to every bins individually. Here - # we are extracting the /bin dir path to append it to the $$PATH. - CWD=`pwd` - sphinxBinDir=$${CWD}/$$(echo $(locations @sphinx//:bin) | cut -d ' ' -f 1 | xargs dirname) - dotBinDir=$${CWD}/$$(echo $(locations @graphviz//:bin) | cut -d ' ' -f 1 | xargs dirname) - zipBinDir=$${CWD}/$$(echo $(locations @zip//:bin) | cut -d ' ' -f 1 | xargs dirname) - PATH=$${PATH}:$${sphinxBinDir}:$${dotBinDir}:$${zipBinDir} - sourcedir=$$(dirname $(location conf.py)) - builddir=$$(mktemp -d rules_haskell_docs.XXXX) - sphinx-build -M html $$sourcedir $$builddir -W -N -q - (cd $$builddir/html && zip -q -r $$CWD/$@ .) - rm -rf $$builddir - """, - tools = [ - "@graphviz//:bin", - "@sphinx//:bin", - "@zip//:bin", - ], -) - -skylark_doc( - name = "api_html", - srcs = [ - - # The order of these files defines the order in which the corresponding - # sections are presented in the docs. - "//haskell:haskell.bzl", - "//haskell:haddock.bzl", - "//haskell:lint.bzl", - "//haskell:toolchain.bzl", - "//haskell:protobuf.bzl", - "//haskell:cc.bzl", - "//haskell:repositories.bzl", - "//haskell:ghc_bindist.bzl", - "//haskell:nixpkgs.bzl", - ], - format = "html", -) |