summaryrefslogtreecommitdiff
path: root/pkgs/shells/bash/5.1.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/bash/5.1.nix')
-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 3bce408ce8c7..21d26dbe5b12 100644
--- a/pkgs/shells/bash/5.1.nix
+++ b/pkgs/shells/bash/5.1.nix
@@ -7,14 +7,14 @@
# patch for cygwin requires readline support
, interactive ? stdenv.isCygwin
-, readline80 ? null
+, readline81 ? null
, withDocs ? false
, texinfo ? null
}:
with lib;
-assert interactive -> readline80 != null;
+assert interactive -> readline81 != null;
assert withDocs -> texinfo != null;
assert stdenv.hostPlatform.isDarwin -> binutils != null;
let
@@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
++ optional withDocs texinfo
++ optional stdenv.hostPlatform.isDarwin binutils;
- buildInputs = optional interactive readline80;
+ buildInputs = optional interactive readline81;
enableParallelBuilding = true;