about summary refs log tree commit diff
path: root/shell.nix
blob: 4b2375700cae3536bf202fd4771549c5641fa700 (plain) (blame)
1
2
3
4
5
6
7
{ pkgs ? (import <nixpkgs> {}) }:

pkgs.mkShell {
  name = "sternenblog-env";

  buildInputs = with pkgs; [ gnumake valgrind gdb doxygen strace ];
}