mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
mariadb: build without snappy on 32-bit
... to work around a build problem https://mariadb.atlassian.net/browse/MDEV-9000 I took care not to cause a rebuild on 64-bit.
This commit is contained in:
parent
1d640f029f
commit
40455f27c3
@ -15,7 +15,9 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
cmake ncurses openssl zlib xz lzo lz4 bzip2 snappy
|
cmake ncurses openssl zlib xz lzo lz4 bzip2
|
||||||
|
# temporary due to https://mariadb.atlassian.net/browse/MDEV-9000
|
||||||
|
(if stdenv.is64bit then snappy else null)
|
||||||
pcre libxml2 boost judy bison libevent cracklib
|
pcre libxml2 boost judy bison libevent cracklib
|
||||||
] ++ stdenv.lib.optionals stdenv.isLinux [ jemalloc libaio systemd numactl ]
|
] ++ stdenv.lib.optionals stdenv.isLinux [ jemalloc libaio systemd numactl ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ perl fixDarwinDylibNames ];
|
++ stdenv.lib.optionals stdenv.isDarwin [ perl fixDarwinDylibNames ];
|
||||||
|
Loading…
Reference in New Issue
Block a user