summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2021-07-04 22:51:17 +0300
committerIzorkin <izorkin@elven.pw>2021-07-04 22:51:17 +0300
commitf85b19387dbf58ca54cb93dd070b7d069c12408b (patch)
tree7307b71afb0dac0b620e580d2253c69c08f61a44 /pkgs
parent0a17f3b530f90f2f6d40a38f14d72549ddf0f873 (diff)
downloadnixpkgs-f85b19387dbf58ca54cb93dd070b7d069c12408b.tar
nixpkgs-f85b19387dbf58ca54cb93dd070b7d069c12408b.tar.gz
nixpkgs-f85b19387dbf58ca54cb93dd070b7d069c12408b.tar.bz2
nixpkgs-f85b19387dbf58ca54cb93dd070b7d069c12408b.tar.lz
nixpkgs-f85b19387dbf58ca54cb93dd070b7d069c12408b.tar.xz
nixpkgs-f85b19387dbf58ca54cb93dd070b7d069c12408b.tar.zst
nixpkgs-f85b19387dbf58ca54cb93dd070b7d069c12408b.zip
mariadb: libsodium is required to build mroonga storage
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/sql/mariadb/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix
index db588b3abe0..64f603a4f07 100644
--- a/pkgs/servers/sql/mariadb/default.nix
+++ b/pkgs/servers/sql/mariadb/default.nix
@@ -4,7 +4,7 @@
 , bzip2, lz4, lzo, snappy, xz, zlib, zstd
 , fixDarwinDylibNames, cctools, CoreServices, less
 , numactl # NUMA Support
-, withStorageMroonga ? true, kytea, msgpack, zeromq
+, withStorageMroonga ? true, kytea, libsodium, msgpack, zeromq
 , withStorageRocks ? true
 }:
 
@@ -155,7 +155,7 @@ server = stdenv.mkDerivation (common // {
     bzip2 lz4 lzo snappy xz zstd
     libxml2 judy libevent cracklib
   ] ++ optional (stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAarch32) numactl
-    ++ optionals withStorageMroonga [ kytea msgpack zeromq ]
+    ++ optionals withStorageMroonga [ kytea libsodium msgpack zeromq ]
     ++ optional stdenv.hostPlatform.isLinux linux-pam
     ++ optional (!stdenv.hostPlatform.isDarwin) mytopEnv;