1
0

pkgs/curl-timings: Add curl shortcut to show connection timings

This commit is contained in:
2025-09-03 13:05:28 +02:00
parent 82f8064956
commit 503dca182e
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{
curl,
writeShellApplication,
}:
writeShellApplication {
name = "curl-timings";
text = builtins.readFile ./curl-timings.sh;
runtimeInputs = [
curl
];
}