Merge pull request #275321 from VergeDX/tcpdump

tcpdump: fix static build
This commit is contained in:
Robin Gloster 2023-12-20 11:31:44 +01:00 committed by GitHub
commit 21fee7de23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, libpcap, perl }:
{ lib, stdenv, fetchurl, libpcap, pkg-config, perl }:
stdenv.mkDerivation rec {
pname = "tcpdump";
@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
patchShebangs tests
'';
nativeBuildInputs = lib.optional (stdenv.hostPlatform.isStatic) [ pkg-config ];
nativeCheckInputs = [ perl ];
buildInputs = [ libpcap ];