rogged/nix/shell.nix
NotAShelf b381e2efbd
initial commit
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ie3b66d17f6f660c9b9a719210bd86f9f6a6a6964
2026-03-19 17:01:54 +03:00

16 lines
176 B
Nix

{
mkShell,
clang-tools,
raylib,
gnumake,
pkg-config,
}:
mkShell {
strictDeps = true;
buildInputs = [
clang-tools
raylib
gnumake
pkg-config
];
}