nix: add libX11

This commit is contained in:
Mitchell Hashimoto
2022-03-29 09:28:59 -07:00
parent 16d5162be0
commit ca11c63ca9

View File

@ -1,8 +1,10 @@
{ mkShell
{ mkShell, lib, stdenv
, pkg-config
, scdoc
, zig
, libX11
}: mkShell rec {
name = "ghostty";
@ -13,5 +15,7 @@
];
buildInputs = [
] ++ lib.optionals stdenv.isLinux [
libX11
];
}