tcpdump: fix static build

This commit is contained in:
Vanilla
2023-12-19 17:16:00 +08:00
parent fad1b8e906
commit a41f68a845
+3 -1
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 ];