depot/third_party/nixpkgs/pkgs/development/tools/ttfb/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

41 lines
1.1 KiB
Nix

{ darwin
, fetchCrate
, lib
, rustPlatform
, stdenv
}:
rustPlatform.buildRustPackage rec {
pname = "ttfb";
version = "1.11.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-38mhwYfWoMZzdbkgv65hBpX23wCpAWwiahuzO5xRpmA=";
};
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
cargoHash = "sha256-Gqv4XvG3aYMRdMP1mzUlsCPN+NMLHq2nf283KBQCems==";
# 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";
mainProgram = "ttfb";
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 ];
};
}