Skip to content

Commit

Permalink
double-conversion: hopefully fix on Darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
abbradar committed Mar 9, 2018
1 parent 325dece commit 9485331
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/development/libraries/double-conversion/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake }:
{ stdenv, lib, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
name = "double-conversion-${version}";
Expand All @@ -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; {
Expand Down

0 comments on commit 9485331

Please sign in to comment.