nixpkgs/pkgs/os-specific/linux/tcp-wrappers/default.nix

61 lines
1.8 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv }:
2017-01-31 13:12:22 +00:00
stdenv.mkDerivation rec {
name = "tcp-wrappers-${version}";
version = "7.6.q";
src = fetchurl {
2017-01-31 13:12:22 +00:00
url = "mirror://debian/pool/main/t/tcp-wrappers/tcp-wrappers_${version}.orig.tar.gz";
sha256 = "0p9ilj4v96q32klavx0phw9va21fjp8vpk11nbh6v2ppxnnxfhwm";
};
2017-01-31 13:12:22 +00:00
debian = fetchurl {
url = "mirror://debian/pool/main/t/tcp-wrappers/tcp-wrappers_${version}-24.debian.tar.xz";
sha256 = "1kgax35rwaj5q8nf8fw60aczvxj99h2jjp7iv1f82y85yz9x0ak7";
};
prePatch = ''
2017-01-31 13:12:22 +00:00
tar -xaf $debian
shopt -s extglob
patches="$(echo debian/patches/!(series)) $patches"
'';
2017-01-31 13:12:22 +00:00
makeFlags = [ "REAL_DAEMON_DIR=$(out)/bin" "linux" ];
installPhase = ''
2017-01-31 13:12:22 +00:00
mkdir -p "$out/bin"
cp -v safe_finger tcpd tcpdchk tcpdmatch try-from "$out/bin"
mkdir -p "$out/lib"
cp -v shared/lib*.so* "$out/lib"
mkdir -p "$out/include"
cp -v *.h "$out/include"
for i in 3 5 8;
do
mkdir -p "$out/man/man$i"
cp *.$i "$out/man/man$i" ;
done
'';
meta = {
description = "TCP Wrappers, a network logger, also known as TCPD or LOG_TCP";
longDescription = ''
Wietse Venema's network logger, also known as TCPD or LOG_TCP.
These programs log the client host name of incoming telnet, ftp,
rsh, rlogin, finger etc. requests. Security options are: access
control per host, domain and/or service; detection of host name
spoofing or host address spoofing; booby traps to implement an
early-warning system. The current version supports the System
V.4 TLI network programming interface (Solaris, DG/UX) in
addition to the traditional BSD sockets.
'';
homepage = ftp://ftp.porcupine.org/pub/security/index.html;
license = "BSD-style";
platforms = stdenv.lib.platforms.unix;
};
}