summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-09-15 07:54:55 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-09-15 07:54:55 +0200
commitc81c7b573aa98953ed77fdf8b318e67d3cbe267a (patch)
tree245549840b9412078da32f7e946902dbe9f95c44 /shell.nix
parent12d299f552a5aa8b6ea711dbe67805c4a5aab10d (diff)
downloadprobe-c81c7b573aa98953ed77fdf8b318e67d3cbe267a.tar.gz
Added Zig and X11 example for creating simple Window
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
];
}