2018-03-09 13:34:55 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake }:
|
2014-10-15 16:04:12 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-02 17:27:37 +00:00
|
|
|
name = "double-conversion-${version}";
|
2018-09-21 00:43:32 +01:00
|
|
|
version = "3.1.1";
|
2014-10-15 16:04:12 +01:00
|
|
|
|
2015-02-02 17:27:37 +00:00
|
|
|
src = fetchFromGitHub {
|
2015-05-18 15:01:06 +01:00
|
|
|
owner = "google";
|
2015-02-02 17:27:37 +00:00
|
|
|
repo = "double-conversion";
|
|
|
|
rev = "v${version}";
|
2018-09-21 00:43:32 +01:00
|
|
|
sha256 = "123rb2p4snqagrybw66vnapchqdwn2rfpr1wcq0ya9gwbyl7xccx";
|
2014-10-15 16:04:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
|
|
|
|
|
2018-03-09 13:34:55 +00:00
|
|
|
# Case sensitivity issue
|
|
|
|
preConfigure = lib.optionalString stdenv.isDarwin ''
|
|
|
|
rm BUILD
|
|
|
|
'';
|
|
|
|
|
2014-10-15 16:04:12 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Binary-decimal and decimal-binary routines for IEEE doubles";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/google/double-conversion;
|
2014-10-15 16:04:12 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
2015-05-14 18:09:10 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-10-15 16:04:12 +01:00
|
|
|
};
|
|
|
|
}
|