3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/double-conversion/default.nix

33 lines
814 B
Nix
Raw Normal View History

{ 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-02-25 17:03:44 +00:00
version = "3.0.0";
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-02-25 17:03:44 +00:00
sha256 = "05m78wlwrg310mxh1cl3d8d0ishzfvzh84x64xmvng252m0vc8yz";
2014-10-15 16:04:12 +01:00
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
# 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";
homepage = https://github.com/google/double-conversion;
2014-10-15 16:04:12 +01:00
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];
2014-10-15 16:04:12 +01:00
};
}