hping: 20051105 -> 2014-12-26 (#94683)

This commit is contained in:
Nikolay Korotkiy 2020-09-06 22:10:45 +03:00 committed by GitHub
parent 02590c9620
commit a8d6e4b7a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,50 +1,41 @@
{ stdenv, fetchurl, libpcap, tcl }: { stdenv, fetchFromGitHub, libpcap, withTcl ? true, tcl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "hping"; pname = "hping";
version = "20051105"; version = "2014-12-26";
src = fetchurl { src = fetchFromGitHub {
url = "http://www.hping.org/hping3-${version}.tar.gz"; owner = "antirez";
sha256 = "1s5f9xd1msx05ibhwaw37jmc7l9fahcxxslqz8a83p0i5ak739pm"; repo = pname;
rev = "3547c7691742c6eaa31f8402e0ccbb81387c1b99"; # there are no tags/releases
sha256 = "0y0n1ybij3yg9lfgzcwfmjz1sjg913zcqrv391xx83dm0j80sdpb";
}; };
buildInputs = [ libpcap tcl ]; buildInputs = [ libpcap ] ++ stdenv.lib.optional withTcl tcl;
configurePhase = '' postPatch = ''
MANPATH="$out/share/man" ./configure substituteInPlace Makefile.in --replace "gcc" "$CC"
sed -i -r -e 's|/usr(/s?bin)|'"$out"'\1|g' Makefile substituteInPlace version.c --replace "RELEASE_DATE" "\"$version\""
''; '' + stdenv.lib.optionalString stdenv.isLinux ''
sed -i -e 's|#include <net/bpf.h>|#include <pcap/bpf.h>|' \
TCLSH = "${tcl}/bin/tclsh";
prePatch = ''
sed -i -e '/#if.*defined(__i386__)/a \
|| defined(__x86_64__) \\
' bytesex.h
sed -i -e 's|#include.*net/bpf.h|#include <pcap/bpf.h>|' \
libpcap_stuff.c script.c libpcap_stuff.c script.c
sed -i -r -e 's|"(/usr/(local/)?)?bin/"|"${tcl}/bin"|g' \
-e 's!/usr/(local/)?(lib|include)!${tcl}/\2!g' \
configure
''; '';
preInstall = '' configureFlags = [ (if withTcl then "TCLSH=${tcl}/bin/tclsh" else "--no-tcl") ];
mkdir -vp "$out/sbin" "$out/share/man/man8"
'';
postInstall = '' installPhase = ''
ln -vs hping3.8.gz "$out/share/man/man8/hping.8.gz" install -Dm755 hping3 -t $out/sbin
ln -vs hping3.8.gz "$out/share/man/man8/hping2.8.gz" ln -s $out/sbin/hping3 $out/sbin/hping
ln -s $out/sbin/hping3 $out/sbin/hping2
install -Dm644 docs/hping3.8 -t $out/share/man/man8
ln -s hping3.8.gz $out/share/man/man8/hping.8.gz
ln -s hping3.8.gz $out/share/man/man8/hping2.8.gz
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A command-line oriented TCP/IP packet assembler/analyzer"; description = "A command-line oriented TCP/IP packet assembler/analyzer";
homepage = "http://www.hping.org/"; homepage = "http://www.hping.org/";
license = licenses.gpl2; license = licenses.gpl2Only;
platforms = platforms.all; platforms = platforms.unix;
broken = stdenv.isDarwin;
}; };
} }