Merge pull request #238918 from NickCao/dhcpdump

dhcpdump: rework packaging, fix cross compilation
This commit is contained in:
Nick Cao 2023-06-22 23:12:59 +08:00 committed by GitHub
commit 49b66bd9ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,27 +1,47 @@
{ lib, stdenv, fetchurl, libpcap, perl }:
{ lib
, stdenv
, fetchurl
, perl
, installShellFiles
, libpcap
}:
stdenv.mkDerivation rec {
pname = "dhcpdump";
version = "1.8";
src = fetchurl {
url = "mirror://ubuntu/pool/universe/d/dhcpdump/dhcpdump_${version}.orig.tar.gz";
sha256 = "143iyzkqvhj4dscwqs75jvfr4wvzrs11ck3fqn5p7yv2h50vjpkd";
url = "http://www.mavetju.org/download/dhcpdump-${version}.tar.gz";
hash = "sha256-bV65QYFi+3OLxW5MFoLOf3OS3ZblaMyZbkTCjef3cZA=";
};
buildInputs = [libpcap perl];
strictDeps = true;
nativeBuildInputs = [
perl # pod2man
installShellFiles
];
buildInputs = [
libpcap
];
hardeningDisable = [ "fortify" ];
installPhase = ''
mkdir -pv $out/bin
cp dhcpdump $out/bin
runHook preBuild
install -Dm555 dhcpdump "$out/bin/dhcpdump"
installManPage dhcpdump.8
runHook postBuild
'';
meta = with lib; {
description = "A tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses";
homepage = "http://www.mavetju.org/unix/dhcpdump-man.php";
platforms = platforms.linux;
maintainers = with maintainers; [ nickcao ];
license = licenses.bsd2;
};
}