about summary refs log tree commit diff
path: root/pkgs/tools/misc/zoxide
diff options
context:
space:
mode:
authorAjeet D'Souza <98ajeet@gmail.com>2021-04-15 18:24:07 +0530
committerGitHub <noreply@github.com>2021-04-15 21:54:07 +0900
commite754546ef7c3a7d5890f17dab7e6d03db16c1e1f (patch)
treed557b25c2d8d22b6f5071bba51fecdf89e9b1dbf /pkgs/tools/misc/zoxide
parent081b9423d4ae18836c7564b634627b214049f80e (diff)
zoxide: remove shell checkInputs
remove unused shell check inputs
Diffstat (limited to 'pkgs/tools/misc/zoxide')
-rw-r--r--pkgs/tools/misc/zoxide/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/tools/misc/zoxide/default.nix b/pkgs/tools/misc/zoxide/default.nix
index 5cad350f49826..a454a73384b51 100644
--- a/pkgs/tools/misc/zoxide/default.nix
+++ b/pkgs/tools/misc/zoxide/default.nix
@@ -5,13 +5,6 @@
 , withFzf ? true
 , fzf
 , libiconv
-  # checkInputs
-, fish
-, powershell
-, shellcheck
-, shfmt
-, xonsh
-, zsh
 }:
 
 rustPlatform.buildRustPackage rec {
@@ -27,23 +20,6 @@ rustPlatform.buildRustPackage rec {
 
   buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
 
-  # tests are broken on darwin
-  doCheck = !stdenv.isDarwin;
-
-  # fish needs a writable HOME for whatever reason
-  preCheck = ''
-    export HOME=$(mktemp -d)
-  '';
-
-  checkInputs = [
-    fish
-    powershell
-    shellcheck
-    shfmt
-    xonsh
-    zsh
-  ];
-
   postPatch = lib.optionalString withFzf ''
     substituteInPlace src/fzf.rs \
       --replace '"fzf"' '"${fzf}/bin/fzf"'