nixpkgs/pkgs/tools/networking/netcat-openbsd/default.nix

52 lines
1.5 KiB
Nix
Raw Normal View History

{stdenv, fetchurl, fetchpatch, pkgconfig, libbsd}:
stdenv.mkDerivation rec {
version = "1.187";
deb-version = "${version}-1";
2017-08-25 14:05:48 +01:00
name = "netcat-openbsd-${version}";
srcs = [
(fetchurl {
2017-08-25 14:05:48 +01:00
url = "mirror://debian/pool/main/n/netcat-openbsd/netcat-openbsd_${version}.orig.tar.gz";
sha256 = "0sxsxl7n7hnxz931jqsp86cdwiq2lm4h3w0i2a67935pki924gxw";
})
(fetchurl {
2017-08-25 14:05:48 +01:00
url = "mirror://debian/pool/main/n/netcat-openbsd/netcat-openbsd_${deb-version}.debian.tar.xz";
sha256 = "0jwbdis6avxdjzg8bcab1bdz296rkzzkdlv50fr3q0277fxjs49q";
})
];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libbsd ];
sourceRoot = name;
prePatch = ''
for i in $(cat ../debian/patches/series); do
patch -p1 < "../debian/patches/$i"
done
'';
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl [
(fetchpatch {
url = "https://gitweb.gentoo.org/proj/musl.git/plain/net-analyzer/openbsd-netcat/files/openbsd-netcat-1.105-b64_ntop.patch?id=4a5864922232c7df550c21f2a7b77fe6f8ffc6d6";
sha256 = "1cgqb6fxas5yiwf26hq57v627hhmcskl5j6rx30090ha2ksjqyvr";
})
];
installPhase = ''
runHook preInstall
install -Dm0755 nc $out/bin/nc
2016-10-30 01:54:19 +01:00
install -Dm0644 nc.1 $out/share/man/man1/nc.1
runHook postInstall
'';
2017-08-25 14:05:48 +01:00
meta = with stdenv.lib; {
homepage = https://packages.debian.org/netcat-openbsd;
2014-11-11 13:20:43 +00:00
description = "TCP/IP swiss army knife, OpenBSD variant";
2017-08-25 14:05:48 +01:00
platforms = platforms.linux;
maintainers = with maintainers; [ willibutz ];
};
}