Merge pull request #108721 from lsix/readline-8.1

This commit is contained in:
Sandro
2021-04-24 11:46:56 +02:00
committed by GitHub
6 changed files with 18 additions and 21 deletions
+3 -3
View File
@@ -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;