about summary refs log tree commit diff
path: root/pkgs/tools/networking/ntttcp/default.nix
blob: af1a298fdadbf334cc0e4424c6de915f0018e45b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ 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";
  };
}