ceph: Fix --with-file-aio logic for new meta.platforms and cross

This commit is contained in:
John Ericson 2018-03-09 18:22:57 -05:00
parent dde80d705e
commit eeb8419c6a

View file

@ -55,7 +55,7 @@ stdenv.mkDerivation {
"--with-mail_ssl_module"
]
++ optional (gd != null) "--with-http_image_filter_module"
++ optional (elem stdenv.system (with platforms; linux ++ freebsd)) "--with-file-aio"
++ optional (with stdenv.hostPlatform; isLinux || isFreeBSD) "--with-file-aio"
++ map (mod: "--add-module=${mod.src}") modules;
NIX_CFLAGS_COMPILE = [ "-I${libxml2.dev}/include/libxml2" ] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations";