blob: c2b3841331d959e9eb19a85c6dc713a825071c57 [file] [log] [blame]
# This is a nix-shell for use with the nix package manager.
# If you have nix installed, you may simply run `nix-shell`
# in this repo, and have all dependencies ready in the new shell.
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs;
[
bash
bazel_4
gcc
git
glibc
jdk11
lcov
python3
# for experimenting with --//bazel:use_local_flex_bison
flex
bison
# Ease development
clang-tools_11 # clang-format
bazel-buildtools # buildifier
];
}