tcpdump: fix static build

This commit is contained in:
Vanilla 2023-12-19 11:33:16 +08:00
parent fad1b8e906
commit a41f68a845
No known key found for this signature in database
GPG key ID: 3750028ED04FA42E

View file

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