Skip to content

Commit

Permalink
Merge pull request NixOS#131424 from angustrau/nttcp
Browse files Browse the repository at this point in the history
nttcp: init at 1.47
  • Loading branch information
fpletz authored Jul 28, 2021
2 parents fbbf12a + 63fbf31 commit 097a91b
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/tools/networking/nttcp/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ lib, stdenv, fetchurl, ... }:

stdenv.mkDerivation rec {
pname = "nttcp";
version = "1.47";

src = fetchurl {
url = "http://deb.debian.org/debian/pool/non-free/n/nttcp/nttcp_${version}.orig.tar.gz";
sha256 = "1bl17dsd53lbpjdqfmpgpd7dms6d2w3scpg7ki7qgfjhs8sarq50";
};

patches = [
# Fix format string compiler error
./format-security.patch
];

makeFlags = [
"prefix=${placeholder "out"}"
];

meta = with lib; {
description = "New test TCP program";
license = licenses.unfree;
maintainers = with maintainers; [ angustrau ];
platforms = platforms.all;
};
}
12 changes: 12 additions & 0 deletions pkgs/tools/networking/nttcp/format-security.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff -Nur -x '*.orig' -x '*~' nttcp-1.47/nttcp.c nttcp-1.47.new/nttcp.c
--- nttcp-1.47/nttcp.c 2000-12-18 05:16:54.000000000 -0500
+++ nttcp-1.47.new/nttcp.c 2012-01-30 23:44:02.260501225 -0500
@@ -372,7 +372,7 @@
#define Message(x) fMessage(stdout, x)

void Exit(char *s, int ret) {
- syslog(LOG_DEBUG, s);
+ syslog(LOG_DEBUG, "%s", s);
fMessage(stderr,s);
exit(ret);
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7546,6 +7546,8 @@ in

numlockx = callPackage ../tools/X11/numlockx { };

nttcp = callPackage ../tools/networking/nttcp { };

nuttcp = callPackage ../tools/networking/nuttcp { };

nssmdns = callPackage ../tools/networking/nss-mdns { };
Expand Down

0 comments on commit 097a91b

Please sign in to comment.