mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-10-04 08:56:32 +00:00
18 lines
164 B
Nix
18 lines
164 B
Nix
{ mkShell
|
|
|
|
, pkg-config
|
|
, scdoc
|
|
, zig
|
|
}: mkShell rec {
|
|
name = "ghostty";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
scdoc
|
|
zig
|
|
];
|
|
|
|
buildInputs = [
|
|
];
|
|
}
|