From 937cf30e7e7fff70b1ec6d1e8948d21aa8b24854 Mon Sep 17 00:00:00 2001 From: ajs124 Date: Mon, 8 Nov 2021 22:40:43 +0100 Subject: [PATCH] mariadb: replace libaio with liburing was missed in a160dfbf354934bf756fca2cb7e7ff005c27f17b see also https://jira.mariadb.org/browse/MDEV-24883 --- pkgs/servers/sql/mariadb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index 90fa78351286..a46fdd1ee36d 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkg-config, makeWrapper, ncurses, nixosTests , libiconv, openssl, pcre2, boost, judy, bison, libxml2, libkrb5, linux-pam, curl -, libaio, libevent, jemalloc, cracklib, systemd, perl +, liburing, libevent, jemalloc, cracklib, systemd, perl , bzip2, lz4, lzo, snappy, xz, zlib, zstd , fixDarwinDylibNames, cctools, CoreServices, less , numactl # NUMA Support @@ -34,7 +34,7 @@ common = rec { # attributes common to both builds buildInputs = [ ncurses openssl zlib pcre2 libiconv curl - ] ++ optionals stdenv.hostPlatform.isLinux [ libaio systemd libkrb5 ] + ] ++ optionals stdenv.hostPlatform.isLinux [ liburing systemd libkrb5 ] ++ optionals stdenv.hostPlatform.isDarwin [ perl cctools CoreServices ] ++ optional (!stdenv.hostPlatform.isDarwin) [ jemalloc ];