nixpkgs/pkgs/tools/networking/ntttcp/default.nix
2024-04-27 11:54:22 +02:00

32 lines
722 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "ntttcp";
version = "1.4.0";
src = fetchFromGitHub {
owner = "microsoft";
repo = "ntttcp-for-linux";
rev = version;
sha256 = "sha256-6O7qSrR6EFr7k9lHQHGs/scZxJJ5DBNDxlSL5hzlRf4=";
};
preBuild = "cd src";
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp ntttcp $out/bin
runHook postInstall
'';
meta = with lib; {
description = "A Linux network throughput multiple-thread benchmark tool";
homepage = "https://github.com/microsoft/ntttcp-for-linux";
license = licenses.mit;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
mainProgram = "ntttcp";
};
}