2015-02-02 18:27:37 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
2014-10-15 17:04:12 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-07-28 10:46:16 +02:00
|
|
|
version = "2.0.1";
|
2015-02-02 18:27:37 +01:00
|
|
|
name = "double-conversion-${version}";
|
2014-10-15 17:04:12 +02:00
|
|
|
|
2015-02-02 18:27:37 +01:00
|
|
|
src = fetchFromGitHub {
|
2015-05-18 16:01:06 +02:00
|
|
|
owner = "google";
|
2015-02-02 18:27:37 +01:00
|
|
|
repo = "double-conversion";
|
|
|
|
rev = "v${version}";
|
2015-07-28 10:46:16 +02:00
|
|
|
sha256 = "05x5rdwndgp1vdq2z1bpvng0dd8pn93kw4vhl6nsvv9vsara2q4b";
|
2014-10-15 17:04:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Binary-decimal and decimal-binary routines for IEEE doubles";
|
2015-05-18 16:01:06 +02:00
|
|
|
homepage = https://github.com/google/double-conversion;
|
2014-10-15 17:04:12 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
2015-05-14 19:09:10 +02:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-10-15 17:04:12 +02:00
|
|
|
};
|
|
|
|
}
|