libpcap: Force detection on Darwin

wip/yesman
Wout Mertens 10 years ago
parent 2ee8be5db5
commit 6d4b7d3af1
  1. 7
      pkgs/development/libraries/libpcap/default.nix

@ -10,7 +10,12 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ flex bison ];
configureFlags = stdenv.lib.optionals stdenv.isLinux "--with-pcap=linux";
# We need to force the autodetection because detection doesn't
# work in pure build enviroments.
configureFlags =
if stdenv.isLinux then [ "--with-pcap=linux" ]
else if stdenv.isDarwin then [ "--with-pcap=bpf" ]
else [];
preInstall = ''mkdir -p $out/bin'';

Loading…
Cancel
Save