mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
tcpdump: Remove crossAttrs and obsolete options
This commit is contained in:
parent
4830019956
commit
d1cf0a8a3a
1 changed files with 4 additions and 8 deletions
|
@ -1,6 +1,4 @@
|
|||
{ stdenv, fetchurl, fetchpatch, libpcap, enableStatic ? false
|
||||
, hostPlatform
|
||||
}:
|
||||
{ stdenv, fetchurl, fetchpatch, libpcap }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tcpdump-${version}";
|
||||
|
@ -20,11 +18,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ libpcap ];
|
||||
|
||||
crossAttrs = {
|
||||
LDFLAGS = if enableStatic then "-static" else "";
|
||||
configureFlags = [ "ac_cv_linux_vers=2" ] ++ (stdenv.lib.optional
|
||||
(hostPlatform.platform.kernelMajor or null == "2.4") "--disable-ipv6");
|
||||
};
|
||||
configureFlags = stdenv.lib.optional
|
||||
(stdenv.hostPlatform != stdenv.buildPlatform)
|
||||
"ac_cv_linux_vers=2";
|
||||
|
||||
meta = {
|
||||
description = "Network sniffer";
|
||||
|
|
Loading…
Reference in a new issue