about summary refs log blame commit diff
path: root/shells/c*.nix
blob: 0bc3a48fd30340abdb40dd3acecbd1aecff38564 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  name = "c*-shell";
  buildInputs = with pkgs; [
    gdb
    valgrind
    gcc
    clang
    cmake
    ninja
  ];
}