mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-06-03 14:08:40 +03:00
22 lines
236 B
Nix
22 lines
236 B
Nix
{ mkShell, lib, stdenv
|
|
|
|
, pkg-config
|
|
, scdoc
|
|
, zig
|
|
|
|
, libX11
|
|
}: mkShell rec {
|
|
name = "ghostty";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
scdoc
|
|
zig
|
|
];
|
|
|
|
buildInputs = [
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
libX11
|
|
];
|
|
}
|