summaryrefslogtreecommitdiff
path: root/pkgs/shells/bash/5.1.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
committerRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
commit4bc5fbef9d159e143fb7e2c3231932e6e76f667c (patch)
treee2198f5c552e0667d838b8ec764ddb3a4d8f6dec /pkgs/shells/bash/5.1.nix
parentjq: fix build with structured-attrs on darwin (diff)
parentMerge pull request #123802 from superherointj/package-virtmanager-bugfix (diff)
downloadnixpkgs-origin/structured-attrs.tar.gz
Merge remote-tracking branch 'upstream/master' into structured-attrsorigin/structured-attrs
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;