Merge pull request #131424 from angustrau/nttcp

nttcp: init at 1.47
This commit is contained in:
Franz Pletz 2021-07-28 21:41:30 +02:00 committed by GitHub
commit 097a91b918
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 0 deletions

View File

@ -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;
};
}

View File

@ -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);
}

View File

@ -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 { };