Merge pull request #332087 from wegank/fast-float-bump

fast-float: 6.1.2 -> 6.1.3
This commit is contained in:
Nick Cao
2024-08-05 15:29:26 -04:00
committed by GitHub
+13 -10
View File
@@ -1,28 +1,31 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "fast-float";
version = "6.1.2";
version = "6.1.3";
src = fetchFromGitHub {
owner = "fastfloat";
repo = "fast_float";
rev = "v${finalAttrs.version}";
hash = "sha256-1QH9XvY981nSKCjb2nK3tDFHkJy9N1zGNX0dACRjTxE=";
hash = "sha256-CMPk2RNbfPT+Pe2L9nS/i1JNXM0giuX+lOuF1g9tn9s=";
};
nativeBuildInputs = [
cmake
];
nativeBuildInputs = [ cmake ];
meta = {
description = "Fast and exact implementation of the C++ from_chars functions for number types";
homepage = "https://github.com/fastfloat/fast_float";
license = with lib.licenses; [ asl20 boost mit ];
license = with lib.licenses; [
asl20
boost
mit
];
maintainers = with lib.maintainers; [ wegank ];
platforms = lib.platforms.all;
};