about summary refs log tree commit diff
path: root/shells/linux.nix
blob: 35d3532a1c16611a179f4d542c9a6170c524bec9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs ? import ../. {} }:
with pkgs;

mkShell {
  buildInputs = [
    bison flex bc libelf openssl

    # For make {n,menu}config
    ncurses pkgconfig

    # For documentation
    graphviz imagemagick python3Packages.sphinx python3Packages.sphinx_rtd_theme
    texlive.combined.scheme-minimal
  ];
}