nixpkgs/pkgs/by-name/li/libpcap/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

74 lines
1.7 KiB
Nix

{ lib
, stdenv
, fetchurl
, flex
, bison
, bluez
, libnl
, libxcrypt
, pkg-config
, withBluez ? false
, withRemote ? false
# for passthru.tests
, ettercap
, nmap
, ostinato
, tcpreplay
, vde2
, wireshark
, python3
, haskellPackages
}:
stdenv.mkDerivation rec {
pname = "libpcap";
version = "1.10.5";
src = fetchurl {
url = "https://www.tcpdump.org/release/${pname}-${version}.tar.gz";
hash = "sha256-N87ZChmjAqfzLkWCJKAMNlwReQXCzTWsVEtogKgUiPA=";
};
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ libnl ]
++ lib.optionals withRemote [ libxcrypt ];
nativeBuildInputs = [ flex bison ]
++ lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ]
++ lib.optionals withBluez [ bluez.dev ];
# We need to force the autodetection because detection doesn't
# work in pure build environments.
configureFlags = [
"--with-pcap=${if stdenv.hostPlatform.isLinux then "linux" else "bpf"}"
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
"--disable-universal"
] ++ lib.optionals withRemote [
"--enable-remote"
] ++ lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform)
[ "ac_cv_linux_vers=2" ];
postInstall = ''
if [ "$dontDisableStatic" -ne "1" ]; then
rm -f $out/lib/libpcap.a
fi
'';
enableParallelBuilding = true;
passthru.tests = {
inherit ettercap nmap ostinato tcpreplay vde2 wireshark;
inherit (python3.pkgs) pcapy-ng scapy;
haskell-pcap = haskellPackages.pcap;
};
meta = with lib; {
homepage = "https://www.tcpdump.org";
description = "Packet Capture Library";
mainProgram = "pcap-config";
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
license = licenses.bsd3;
};
}