depot/third_party/nixpkgs/pkgs/development/tools/ttfb/default.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

40 lines
1.1 KiB
Nix

{ darwin
, fetchCrate
, lib
, rustPlatform
, stdenv
}:
rustPlatform.buildRustPackage rec {
pname = "ttfb";
version = "1.10.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-94gBofb7H7+qU50+cp+rq14Vtbk2vuXFQksNITvICm4=";
};
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
cargoHash = "sha256-CUisxtUQXkStqSZikIoAN0GwpUjvQqon7KqI0beHL5U=";
# The bin feature activates all dependencies of the binary. Otherwise,
# only the library is build.
buildFeatures = [ "bin" ];
meta = {
description = "CLI-Tool to measure the TTFB (time to first byte) of HTTP(S) requests";
longDescription = ''
ttfb measure the TTFB (time to first byte) of HTTP(S) requests. This includes data
of intermediate steps, such as the relative and absolute timings of DNS lookup, TCP
connect, and TLS handshake.
'';
homepage = "https://github.com/phip1611/ttfb";
changelog = "https://github.com/phip1611/ttfb/blob/v${version}/CHANGELOG.md";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ phip1611 ];
};
}