mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
libpcap: pass --with-pcap=linux for all linux systems
...instead of just for i686-linux. Without a --with-pcap= configure flag, the build system tries to auto-detect the backend by poking in /dev, /usr/include etc... In the pure nix world, this auto-detection fails. (Good, we don't want host details to leak into the build.) The end result of this (failed) auto-detection; no packet capture possible: $ sudo tcpdump -i wlp2s0 tcpdump: live packet capture not supported on this system This fixes the above issue on 64-bit linux systems, and probably other architectures supported by linux.
This commit is contained in:
parent
fe5ebe0186
commit
287d6d5d3a
|
@ -10,8 +10,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ flex bison ];
|
||||
|
||||
# Apparently, 32 bit systems need this forced? Not verified if still needed.
|
||||
configureFlags = stdenv.lib.optionals (stdenv.system == "i686-linux") "--with-pcap=linux";
|
||||
configureFlags = stdenv.lib.optionals stdenv.isLinux "--with-pcap=linux";
|
||||
|
||||
preInstall = ''mkdir -p $out/bin'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue