File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ common = rec { # attributes common to both builds
28
28
buildInputs = [
29
29
ncurses openssl zlib pcre jemalloc
30
30
] ++ stdenv . lib . optionals stdenv . isLinux [ libaio systemd ]
31
- ++ stdenv . lib . optionals stdenv . isDarwin [ perl fixDarwinDylibNames cctools CoreServices ] ;
31
+ ++ stdenv . lib . optionals stdenv . isDarwin [ perl fixDarwinDylibNames cctools CoreServices ]
32
+ # FIXME: move libiconv outside isDarwin on staging.
33
+ ++ optional stdenv . isDarwin libiconv ;
32
34
33
35
prePatch = ''
34
36
sed -i 's,[^"]*/var/log,/var/log,g' storage/mroonga/vendor/groonga/CMakeLists.txt
@@ -122,8 +124,7 @@ everything = stdenv.mkDerivation (common // {
122
124
buildInputs = common . buildInputs ++ [
123
125
xz lzo lz4 bzip2 snappy
124
126
libxml2 boost judy libevent cracklib
125
- ] ++ optional ( stdenv . isLinux && ! stdenv . isArm ) numactl
126
- ++ optional stdenv . isDarwin libiconv ;
127
+ ] ++ optional ( stdenv . isLinux && ! stdenv . isArm ) numactl ;
127
128
128
129
cmakeFlags = common . cmakeFlags ++ [
129
130
"-DMYSQL_DATADIR=/var/lib/mysql"
You can’t perform that action at this time.
0 commit comments