biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / nttcp / default.nix
blob7c7302cf19c6f3678e124c3879cc087086eb844e
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "nttcp";
5   version = "1.47";
7   src = fetchurl {
8     url = "https://deb.debian.org/debian/pool/non-free/n/nttcp/nttcp_${version}.orig.tar.gz";
9     sha256 = "1bl17dsd53lbpjdqfmpgpd7dms6d2w3scpg7ki7qgfjhs8sarq50";
10   };
12   patches = [
13     # Fix format string compiler error
14     ./format-security.patch
15   ];
17   makeFlags = [
18     "prefix=${placeholder "out"}"
19   ];
21   meta = with lib; {
22     description = "New test TCP program";
23     license = licenses.unfree;
24     maintainers = with maintainers; [ emilytrau ];
25     platforms = platforms.all;
26   };