mariadb: Fix Darwin build

This commit is contained in:
Janne Heß 2022-02-17 16:04:33 +01:00
parent a0dbbd3796
commit 6f7baddf2f
No known key found for this signature in database
GPG Key ID: 69165158F05265DF

@ -5,7 +5,7 @@
, curl, libiconv, ncurses, openssl, pcre, pcre2
, libkrb5, libaio, liburing, systemd
, CoreServices, cctools, perl
, jemalloc, less
, jemalloc, less, libedit
# Server components
, bzip2, lz4, lzo, snappy, xz, zlib, zstd
, cracklib, judy, libevent, libxml2
@ -15,7 +15,7 @@
, withStorageRocks ? true
}:
let # in mariadb # spans the whole file
let
libExt = stdenv.hostPlatform.extensions.sharedLibrary;
@ -43,7 +43,7 @@ commonOptions = packageSettings: rec { # attributes common to both builds
] ++ (packageSettings.extraBuildInputs or [])
++ lib.optionals stdenv.hostPlatform.isLinux ([ libkrb5 systemd ]
++ (if (lib.versionOlder version "10.6") then [ libaio ] else [ liburing ]))
++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices cctools perl ]
++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices cctools perl libedit ]
++ lib.optional (!stdenv.hostPlatform.isDarwin) [ jemalloc ]
++ (if (lib.versionOlder version "10.5") then [ pcre ] else [ pcre2 ]);