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
|
|
|
|
, dbus
|
|
|
|
, libX11
|
|
|
|
, xcbutil
|
|
|
|
, libxcb
|
2021-04-07 06:54:45 +01:00
|
|
|
, xcbutilimage
|
2020-11-23 18:23:34 +00:00
|
|
|
, xcbutilkeysyms
|
|
|
|
, xcbutilwm # contains xcb-ewmh among others
|
|
|
|
, libxkbcommon
|
|
|
|
, libglvnd # libEGL.so.1
|
|
|
|
, egl-wayland
|
|
|
|
, wayland
|
|
|
|
, libGLU
|
|
|
|
, libGL
|
|
|
|
, freetype
|
|
|
|
, zlib
|
2021-04-07 07:16:27 +01:00
|
|
|
# Apple frameworks
|
|
|
|
, CoreGraphics
|
|
|
|
, Cocoa
|
|
|
|
, Foundation
|
|
|
|
, libiconv
|
2020-11-23 18:23:34 +00:00
|
|
|
}:
|
|
|
|
let
|
2021-01-07 04:48:25 +00:00
|
|
|
runtimeDeps = [
|
2021-01-07 02:49:09 +00:00
|
|
|
zlib
|
|
|
|
fontconfig
|
|
|
|
freetype
|
2021-01-15 13:21:58 +00:00
|
|
|
] ++ lib.optionals (stdenv.isLinux) [
|
2020-11-23 18:23:34 +00:00
|
|
|
libX11
|
|
|
|
xcbutil
|
|
|
|
libxcb
|
2021-04-07 06:54:45 +01:00
|
|
|
xcbutilimage
|
2020-11-23 18:23:34 +00:00
|
|
|
xcbutilkeysyms
|
|
|
|
xcbutilwm
|
|
|
|
libxkbcommon
|
|
|
|
dbus
|
|
|
|
libglvnd
|
|
|
|
egl-wayland
|
|
|
|
wayland
|
|
|
|
libGLU
|
|
|
|
libGL
|
2021-04-07 07:16:27 +01:00
|
|
|
openssl
|
2021-01-15 13:21:58 +00:00
|
|
|
] ++ lib.optionals (stdenv.isDarwin) [
|
2021-01-07 04:48:25 +00:00
|
|
|
Foundation
|
|
|
|
CoreGraphics
|
|
|
|
Cocoa
|
2021-04-07 06:54:45 +01:00
|
|
|
libiconv
|
2020-11-23 18:23:34 +00:00
|
|
|
];
|
|
|
|
in
|
|
|
|
|
2021-04-07 07:16:27 +01:00
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wezterm";
|
|
|
|
version = "20210407-nightly";
|
2020-11-23 18:23:34 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wez";
|
|
|
|
repo = pname;
|
2021-04-07 07:16:27 +01:00
|
|
|
rev = "d2419fb99e567e3b260980694cc840a1a3b86922";
|
|
|
|
sha256 = "4tVjrdDlrDPKzcbTYK9vRlzfC9tfvkD+D0aN19A8RWE=";
|
2020-11-25 20:57:52 +00:00
|
|
|
fetchSubmodules = true;
|
2020-11-23 18:23:34 +00:00
|
|
|
};
|
2021-04-07 07:16:27 +01:00
|
|
|
|
|
|
|
cargoSha256 = "sha256-UaXeeuRuQk+CWF936mEAaWTjZuTSRPmxbQ/9E2oZIqg=";
|
2020-11-23 18:23:34 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
python3
|
|
|
|
perl
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = runtimeDeps;
|
|
|
|
|
2021-04-07 07:16:27 +01:00
|
|
|
preFixup = 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
|
2021-04-07 06:54:45 +01:00
|
|
|
patchelf --set-rpath "${lib.makeLibraryPath runtimeDeps}" $out/bin/$artifact
|
2020-11-23 18:23:34 +00:00
|
|
|
done
|
2021-01-15 13:21:58 +00:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
2021-04-07 06:54:45 +01:00
|
|
|
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"
|
|
|
|
ln -s $out/bin/{wezterm,wezterm-mux-server,wezterm-gui,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;
|
2021-04-07 07:16:27 +01:00
|
|
|
maintainers = with maintainers; [ steveej SuperSandro2000 ];
|
2020-11-23 18:23:34 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|