about summary refs log tree commit diff
path: root/pkgs/development/compilers/rust
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-02-18 16:08:57 +0100
committerWinter <winter@winter.cafe>2023-02-20 01:16:58 -0500
commitc90dcc73273387b152e7d3cf1a50abec00c3204b (patch)
treeb93b54dddbe128730d52d6d0975ed991cc2dae7e /pkgs/development/compilers/rust
parentaf260c1e5a5d9dc0fa046343f2151e0fe743495c (diff)
downloadnixlib-c90dcc73273387b152e7d3cf1a50abec00c3204b.tar
nixlib-c90dcc73273387b152e7d3cf1a50abec00c3204b.tar.gz
nixlib-c90dcc73273387b152e7d3cf1a50abec00c3204b.tar.bz2
nixlib-c90dcc73273387b152e7d3cf1a50abec00c3204b.tar.lz
nixlib-c90dcc73273387b152e7d3cf1a50abec00c3204b.tar.xz
nixlib-c90dcc73273387b152e7d3cf1a50abec00c3204b.tar.zst
nixlib-c90dcc73273387b152e7d3cf1a50abec00c3204b.zip
rustc: add ripgrep and wezterm to passthru.tests
ripgrep is a very popular grep replacement (similar to fd and find)
and wezterm is a popular terminal emulator which has a big codebase with
lots of features tested (it also broke in the past multiple times on
rustc upgrades.).
Diffstat (limited to 'pkgs/development/compilers/rust')
-rw-r--r--pkgs/development/compilers/rust/rustc.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix
index 60f07a64299a..130cb8326115 100644
--- a/pkgs/development/compilers/rust/rustc.nix
+++ b/pkgs/development/compilers/rust/rustc.nix
@@ -11,6 +11,8 @@
 , sha256
 , patches ? []
 , fd
+, ripgrep
+, wezterm
 , firefox
 , thunderbird
 }:
@@ -204,7 +206,9 @@ in stdenv.mkDerivation rec {
   passthru = {
     llvm = llvmShared;
     inherit llvmPackages;
-    tests = { inherit fd; } // lib.optionalAttrs stdenv.hostPlatform.isLinux { inherit firefox thunderbird; };
+    tests = {
+      inherit fd ripgrep wezterm;
+    } // lib.optionalAttrs stdenv.hostPlatform.isLinux { inherit firefox thunderbird; };
   };
 
   meta = with lib; {