summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
index ba1a6ce..61fda73 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,11 +1,17 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
+ # Compilers and tools.
binutils
gnumake
nasm
tinycc
+ clang
zig
zls
+
+ # Dev libraries and deps.
+ xorg.libX11
+ xorg.libX11.dev
];
}