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 28, 2024
1 parent 0b18160 commit a1f5e53
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/by-name/gh/ghostty/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -155,23 +155,25 @@ 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
];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
# Issues finding the SDK in the sandbox
broken = stdenv.hostPlatform.isDarwin;
};
})

0 comments on commit a1f5e53

Please sign in to comment.