summary refs log tree commit diff
path: root/pkgs/shells/bash
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/bash')
-rw-r--r--pkgs/shells/bash/5.1.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/bash/5.1.nix b/pkgs/shells/bash/5.1.nix
index 0f50c72f5da..0dbfd77bf0e 100644
--- a/pkgs/shells/bash/5.1.nix
+++ b/pkgs/shells/bash/5.1.nix
@@ -7,7 +7,7 @@
 
   # patch for cygwin requires readline support
 , interactive ? stdenv.isCygwin
-, readline81 ? null
+, readline ? null
 , withDocs ? false
 , texinfo ? null
 , forFHSEnv ? false
@@ -15,7 +15,7 @@
 
 with lib;
 
-assert interactive -> readline81 != null;
+assert interactive -> readline != null;
 assert withDocs -> texinfo != null;
 assert stdenv.hostPlatform.isDarwin -> binutils != null;
 let
@@ -82,7 +82,7 @@ stdenv.mkDerivation rec {
     ++ optional withDocs texinfo
     ++ optional stdenv.hostPlatform.isDarwin binutils;
 
-  buildInputs = optional interactive readline81;
+  buildInputs = optional interactive readline;
 
   enableParallelBuilding = true;