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

(import ./c.nix args).overrideAttrs ({ buildInputs ? [], ... }: {
  name = "linux-shell";
  buildInputs = buildInputs ++ [
    elfutils openssl

    # For make {n,menu}config
    ncurses

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