wezterm: cleanup meta, format

This commit is contained in:
Sandro Jäckel 2023-02-19 23:51:05 +01:00 committed by Winter
parent c90dcc7327
commit 8be63c2f94

View file

@ -123,9 +123,7 @@ rustPlatform.buildRustPackage rec {
};
terminfo = runCommand "wezterm-terminfo"
{
nativeBuildInputs = [
ncurses
];
nativeBuildInputs = [ ncurses ];
} ''
mkdir -p $out/share/terminfo $out/nix-support
tic -x -o $out/share/terminfo ${src}/termwiz/data/wezterm.terminfo
@ -133,10 +131,9 @@ rustPlatform.buildRustPackage rec {
};
meta = with lib; {
description = "A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust";
description = "GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust";
homepage = "https://wezfurlong.org/wezterm";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
platforms = platforms.unix;
};
}