double-conversion: hopefully fix on Darwin

This commit is contained in:
Nikolay Amiantov 2018-03-09 16:34:55 +03:00
parent 325dece6a0
commit 948533180f

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake }:
{ stdenv, lib, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "double-conversion-${version}";
@ -15,6 +15,11 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
# Case sensitivity issue
preConfigure = lib.optionalString stdenv.isDarwin ''
rm BUILD
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {