Skip to content

Commit

Permalink
ghostty: add darwin to meta.platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
getchoo committed Dec 29, 2024
1 parent b36e029 commit f4d4b22
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions pkgs/by-name/gh/ghostty/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -177,29 +177,31 @@ stdenv.mkDerivation (finalAttrs: {
};

meta = {
homepage = "https://ghostty.org/";
description = "Fast, native, feature-rich terminal emulator pushing modern features";
longDescription = ''
Ghostty is a terminal emulator that differentiates itself by being
fast, feature-rich, and native. While there are many excellent terminal
emulators available, they all force you to choose between speed,
features, or native UIs. Ghostty provides all three.
'';
homepage = "https://ghostty.org/";
downloadPage = "https://ghostty.org/download";

license = lib.licenses.mit;
platforms = lib.platforms.linux;
mainProgram = "ghostty";
maintainers = with lib.maintainers; [
jcollie
pluiedev
getchoo
];
outputsToInstall = [
"out"
"man"
"shell_integration"
"terminfo"
];
maintainers = with lib.maintainers; [
jcollie
pluiedev
getchoo
];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
# Issues finding the SDK in the sandbox
broken = stdenv.hostPlatform.isDarwin;
};
})

0 comments on commit f4d4b22

Please sign in to comment.