diff --git a/pkgs/by-name/fa/fast-float/package.nix b/pkgs/by-name/fa/fast-float/package.nix index b757ab28df06..a59a25c5c04d 100644 --- a/pkgs/by-name/fa/fast-float/package.nix +++ b/pkgs/by-name/fa/fast-float/package.nix @@ -1,7 +1,8 @@ -{ lib -, stdenv -, fetchFromGitHub -, cmake +{ + lib, + stdenv, + fetchFromGitHub, + cmake, }: stdenv.mkDerivation (finalAttrs: { @@ -15,14 +16,16 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-1QH9XvY981nSKCjb2nK3tDFHkJy9N1zGNX0dACRjTxE="; }; - 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; };