about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-06-01 17:28:40 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-06-01 17:28:40 +0200
commit72588581ee4e1cc76dfc074afe356f18da2f65f0 (patch)
tree35782190c1945822bb82da74585d9bccef131e42 /pkgs/tools/misc
parent825ad30f7065800760becd03bd2aeebc6434757f (diff)
atuin: remove xvfb-run for tests
not needed anymore
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/atuin/default.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/pkgs/tools/misc/atuin/default.nix b/pkgs/tools/misc/atuin/default.nix
index ee1968a7839f0..b0c8f63a8c48b 100644
--- a/pkgs/tools/misc/atuin/default.nix
+++ b/pkgs/tools/misc/atuin/default.nix
@@ -6,7 +6,6 @@
 , libiconv
 , Security
 , SystemConfiguration
-, xvfb-run
 , nixosTests
 }:
 
@@ -38,16 +37,6 @@ rustPlatform.buildRustPackage rec {
       --zsh <($out/bin/atuin gen-completions -s zsh)
   '';
 
-  nativeCheckInputs = lib.optionals xvfb-run.meta.available [
-    xvfb-run
-  ];
-
-  checkPhase = lib.optionalString xvfb-run.meta.available ''
-    runHook preCheck
-    xvfb-run cargo test
-    runHook postCheck
-  '';
-
   passthru.tests = {
     inherit (nixosTests) atuin;
   };