about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators/wezterm
diff options
context:
space:
mode:
authorJamie McClymont <jamie@kwiius.com>2020-11-14 07:54:56 +1300
committerJamie McClymont <jamie@kwiius.com>2022-03-20 16:48:06 +1300
commit694862304bf19ac6eb1f730f7fc9bfd3066a4006 (patch)
tree970e4e3db794341b413e4d5fab65626fa333d16e /pkgs/applications/terminal-emulators/wezterm
parent842e547c176ca1a8d9e4fd1bab22f8b840be52f5 (diff)
nixos/tests: add passthru.tests to all tested terminal emulators
Diffstat (limited to 'pkgs/applications/terminal-emulators/wezterm')
-rw-r--r--pkgs/applications/terminal-emulators/wezterm/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/terminal-emulators/wezterm/default.nix b/pkgs/applications/terminal-emulators/wezterm/default.nix
index fc12b1addf6f2..468e57448ba80 100644
--- a/pkgs/applications/terminal-emulators/wezterm/default.nix
+++ b/pkgs/applications/terminal-emulators/wezterm/default.nix
@@ -22,6 +22,7 @@
 , Cocoa
 , Foundation
 , libiconv
+, nixosTests
 }:
 
 rustPlatform.buildRustPackage rec {
@@ -99,6 +100,8 @@ rustPlatform.buildRustPackage rec {
     ln -s $out/bin/{wezterm,wezterm-mux-server,wezterm-gui,strip-ansi-escapes} "$OUT_APP"
   '';
 
+  passthru.tests.test = nixosTests.terminal-emulators.wezterm;
+
   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";