mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
Merge pull request #14772 from cleverca22/mariadb
mariadb: fix arm builds
This commit is contained in:
commit
0b3827d04a
@ -19,7 +19,8 @@ stdenv.mkDerivation rec {
|
||||
# temporary due to https://mariadb.atlassian.net/browse/MDEV-9000
|
||||
(if stdenv.is64bit then snappy else null)
|
||||
pcre libxml2 boost judy bison libevent cracklib
|
||||
] ++ stdenv.lib.optionals stdenv.isLinux [ jemalloc libaio systemd numactl ]
|
||||
] ++ stdenv.lib.optionals stdenv.isLinux [ jemalloc libaio systemd ]
|
||||
++ stdenv.lib.optionals (stdenv.isLinux && !stdenv.isArm) [ numactl ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ perl fixDarwinDylibNames cctools CoreServices ];
|
||||
|
||||
patches = stdenv.lib.optional stdenv.isDarwin ./my_context_asm.patch;
|
||||
|
Loading…
Reference in New Issue
Block a user