diff --git a/pkgs/by-name/fa/fast-float/package.nix b/pkgs/by-name/fa/fast-float/package.nix index b757ab28df06..1edfd5482856 100644 --- a/pkgs/by-name/fa/fast-float/package.nix +++ b/pkgs/by-name/fa/fast-float/package.nix @@ -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; };