dotfiles/.config/nixshell/c.nix
2023-04-08 16:59:16 +02:00

22 lines
359 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
];
nativeBuildInputs = with pkgs; [
pkg-config
];
SDL2 = pkgs.SDL2;
SDL2_image = pkgs.SDL2_image;
}