nixpkgs/pkgs/applications/terminal-emulators/wezterm/default.nix

109 lines
2.3 KiB
Nix
Raw Normal View History

2021-01-07 02:49:09 +00:00
{ stdenv
, rustPlatform
2020-11-23 18:23:34 +00:00
, lib
, fetchFromGitHub
, pkg-config
, fontconfig
, python3
, openssl
, perl
2021-01-07 02:49:09 +00:00
# Apple frameworks
, CoreGraphics
, Cocoa
, Foundation
2020-11-23 18:23:34 +00:00
, dbus
, libX11
, xcbutil
, libxcb
, xcbutilkeysyms
, xcbutilwm # contains xcb-ewmh among others
, libxkbcommon
, libglvnd # libEGL.so.1
, egl-wayland
, wayland
, libGLU
, libGL
, freetype
, zlib
}:
let
2021-01-07 04:48:25 +00:00
runtimeDeps = [
2021-01-07 02:49:09 +00:00
zlib
fontconfig
freetype
2021-01-07 04:48:25 +00:00
] ++ stdenv.lib.optionals (stdenv.isLinux) [
2020-11-23 18:23:34 +00:00
libX11
xcbutil
libxcb
xcbutilkeysyms
xcbutilwm
libxkbcommon
dbus
libglvnd
egl-wayland
wayland
libGLU
libGL
2021-01-07 04:48:25 +00:00
] ++ stdenv.lib.optionals (stdenv.isDarwin) [
Foundation
CoreGraphics
Cocoa
2020-11-23 18:23:34 +00:00
];
pname = "wezterm";
in
rustPlatform.buildRustPackage {
inherit pname;
version = "unstable-2020-11-22";
src = fetchFromGitHub {
owner = "wez";
repo = pname;
rev = "3bd8d8c84591f4d015ff9a47ddb478e55c231fda";
sha256 = "13xf3685kir4p159hsxrqkj9p2lwgfp0n13h9zadslrd44l8b8j8";
2020-11-25 20:57:52 +00:00
fetchSubmodules = true;
2020-11-23 18:23:34 +00:00
};
2020-11-25 20:57:52 +00:00
cargoSha256 = "1ghjpyd3f5dqi6bblr6d2lihdschpyj5djfd1600hvb41x75lmhx";
2020-11-23 18:23:34 +00:00
nativeBuildInputs = [
pkg-config
python3
openssl.dev
perl
];
buildInputs = runtimeDeps;
installPhase = ''
2021-01-07 02:49:09 +00:00
'' + stdenv.lib.optionalString stdenv.isLinux ''
2021-01-07 04:48:25 +00:00
for artifact in wezterm wezterm-gui wezterm-mux-server strip-ansi-escapes; do
2020-11-23 18:23:34 +00:00
patchelf --set-rpath "${lib.makeLibraryPath runtimeDeps}" $releaseDir/$artifact
install -D $releaseDir/$artifact -t $out/bin
done
2021-01-07 04:48:25 +00:00
'' + stdenv.lib.optionalString stdenv.isDarwin ''
mkdir -p "$out/Applications"
OUT_APP="$out/Applications/WezTerm.app"
cp -r assets/macos/WezTerm.app "$OUT_APP"
rm $OUT_APP/*.dylib
cp -r assets/shell-integration/* "$OUT_APP"
cp $releaseDir/wezterm "$OUT_APP"
cp $releaseDir/wezterm-mux-server "$OUT_APP"
cp $releaseDir/wezterm-gui "$OUT_APP"
cp $releaseDir/strip-ansi-escapes "$OUT_APP"
2020-11-23 18:23:34 +00:00
'';
# prevent further changes to the RPATH
dontPatchELF = true;
meta = with lib; {
description = "A 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; [ steveej ];
platforms = platforms.unix;
};
}