dotfiles/.config/nixshell/c.nix
2023-10-29 14:51:29 +01:00

27 lines
465 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
cmake
gdb
SDL2
SDL2.dev
SDL2_image
SDL2_gfx
sqlite
sqlite.dev
libconfig
libinput
clang-tools_15
valgrind
xorg.xcbutil
xorg.xcbutilkeysyms
];
nativeBuildInputs = with pkgs; [
pkg-config
];
SDL2 = pkgs.SDL2;
SDL2_image = pkgs.SDL2_image;
}