about summary refs log tree commit diff
path: root/pkgs/tools/misc/thefuck
diff options
context:
space:
mode:
authorWinter <winter@winter.cafe>2022-07-23 14:27:18 -0400
committerWinter <winter@winter.cafe>2022-07-23 14:27:18 -0400
commitf0f07edc83403b854b0822f7614ac9a7e3cdd62c (patch)
tree80f6502b4f0f13c788f60e3e0d71ca706ead2ffb /pkgs/tools/misc/thefuck
parent42e208ab9019d6fb2a7d4d2aa351ab2e50e7cd10 (diff)
thefuck: lib.optional -> lib.optionals
Diffstat (limited to 'pkgs/tools/misc/thefuck')
-rw-r--r--pkgs/tools/misc/thefuck/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/thefuck/default.nix b/pkgs/tools/misc/thefuck/default.nix
index 87d6dcfb0c2eb..13f741c5444f2 100644
--- a/pkgs/tools/misc/thefuck/default.nix
+++ b/pkgs/tools/misc/thefuck/default.nix
@@ -18,7 +18,7 @@ buildPythonApplication rec {
 
   checkInputs = [ go mock pytestCheckHook pytest-mock ];
 
-  disabledTests = lib.optional stdenv.isDarwin [
+  disabledTests = lib.optionals stdenv.isDarwin [
     "test_settings_defaults"
     "test_from_file"
     "test_from_env"