diff options
author | Vincent Ambo <tazjin@google.com> | 2019-07-04T10·18+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-07-04T10·18+0100 |
commit | f723b8b878a3c4a4687b9e337a875500bebb39b1 (patch) | |
tree | e85204cf042c355e90cff61c111e7d8cd15df311 /third_party/bazel/rules_haskell/shell.nix | |
parent | 2eb1dc26e42ffbdc168f05ef744bd4b4f3e4c36f (diff) |
feat(third_party/bazel): Check in rules_haskell from Tweag r/17
Diffstat (limited to 'third_party/bazel/rules_haskell/shell.nix')
-rw-r--r-- | third_party/bazel/rules_haskell/shell.nix | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/third_party/bazel/rules_haskell/shell.nix b/third_party/bazel/rules_haskell/shell.nix new file mode 100644 index 000000000000..35fecb07126a --- /dev/null +++ b/third_party/bazel/rules_haskell/shell.nix @@ -0,0 +1,51 @@ +{ pkgs ? import ./nixpkgs {}, docTools ? true }: + +with pkgs; + +mkShell { + # XXX: hack for macosX, this flags disable bazel usage of xcode + # Note: this is set even for linux so any regression introduced by this flag + # will be catched earlier + # See: https://github.com/bazelbuild/bazel/issues/4231 + BAZEL_USE_CPP_ONLY_TOOLCHAIN=1; + + buildInputs = [ + go + nix + which + perl + python + bazel + # Needed for @com_github_golang_protobuf, itself needed by buildifier. + git + # Needed to get correct locale for tests with encoding + glibcLocales + # to check haddock outputs + linkchecker + # to avoid CA certificate failures on MacOS CI + cacert + # Needed for debug/linking_utils + binutils + ] ++ lib.optionals docTools [graphviz python36Packages.sphinx zip unzip]; + + shellHook = '' + # Add nix config flags to .bazelrc.local. + # + BAZELRC_LOCAL=".bazelrc.local" + if [ ! -e "$BAZELRC_LOCAL" ] + then + ARCH="" + if [ "$(uname)" == "Darwin" ]; then + ARCH="darwin" + elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then + ARCH="linux" + fi + echo "[!] It looks like you are using a ''${ARCH} nix-based system. In order to build this project, you probably need to add the two following host_platform entries to your .bazelrc.local file." + echo "" + echo "test --host_platform=@io_tweag_rules_haskell//haskell/platforms:''${ARCH}_x86_64_nixpkgs" + fi + + # source bazel bash completion + source ${pkgs.bazel}/share/bash-completion/completions/bazel + ''; +} |