biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / ttfb / default.nix
blob145144528fef60d0f19991f0c8f2e8463372bd54
1 { darwin
2 , fetchCrate
3 , lib
4 , rustPlatform
5 , stdenv
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "ttfb";
10   version = "1.11.0";
12   src = fetchCrate {
13     inherit pname version;
14     hash = "sha256-38mhwYfWoMZzdbkgv65hBpX23wCpAWwiahuzO5xRpmA=";
15   };
17   buildInputs = lib.optionals stdenv.isDarwin [
18     darwin.apple_sdk.frameworks.Security
19   ];
21   cargoHash = "sha256-Gqv4XvG3aYMRdMP1mzUlsCPN+NMLHq2nf283KBQCems==";
23   # The bin feature activates all dependencies of the binary. Otherwise,
24   # only the library is build.
25   buildFeatures = [ "bin" ];
27   meta = {
28     description = "CLI-Tool to measure the TTFB (time to first byte) of HTTP(S) requests";
29     mainProgram = "ttfb";
30     longDescription = ''
31       ttfb measure the TTFB (time to first byte) of HTTP(S) requests. This includes data
32       of intermediate steps, such as the relative and absolute timings of DNS lookup, TCP
33       connect, and TLS handshake.
34     '';
35     homepage = "https://github.com/phip1611/ttfb";
36     changelog = "https://github.com/phip1611/ttfb/blob/v${version}/CHANGELOG.md";
37     license = with lib.licenses; [ mit ];
38     maintainers = with lib.maintainers; [ phip1611 ];
39   };