initial glfw stuff working

This commit is contained in:
Mitchell Hashimoto
2022-03-29 10:38:10 -07:00
parent ca11c63ca9
commit b8cee0a39e
5 changed files with 167 additions and 0 deletions

View File

@@ -1,14 +1,18 @@
{ mkShell, lib, stdenv
, gdb
, pkg-config
, scdoc
, zig
, glfw
, libX11
, vulkan-headers
}: mkShell rec {
name = "ghostty";
nativeBuildInputs = [
gdb
pkg-config
scdoc
zig
@@ -16,6 +20,8 @@
buildInputs = [
] ++ lib.optionals stdenv.isLinux [
glfw
libX11
vulkan-headers
];
}