mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
571c71e6f7
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.
126 lines
2.9 KiB
Nix
126 lines
2.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
libnl,
|
|
openssl,
|
|
nixosTests,
|
|
sqlite ? null,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hostapd";
|
|
version = "2.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://w1.fi/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-Kz+stjL9T2XjL0v4Kna0tyxQH5laT2LjMCGf567RdHo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libnl openssl sqlite ];
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
# Note: fetchurl seems to be unhappy with openwrt git
|
|
# server's URLs containing semicolons. Using the github mirror instead.
|
|
url = "https://raw.githubusercontent.com/openwrt/openwrt/eefed841b05c3cd4c65a78b50ce0934d879e6acf/package/network/services/hostapd/patches/300-noscan.patch";
|
|
sha256 = "08p5frxhpq1rp2nczkscapwwl8g9nc4fazhjpxic5bcbssc3sb00";
|
|
})
|
|
];
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
# Based on hostapd's defconfig. Only differences are tracked.
|
|
extraConfig = ''
|
|
# Use epoll(7) instead of select(2) on linux
|
|
CONFIG_ELOOP_EPOLL=y
|
|
|
|
# Drivers
|
|
CONFIG_DRIVER_WIRED=y
|
|
CONFIG_DRIVER_NONE=y
|
|
|
|
# Integrated EAP server
|
|
CONFIG_EAP_SIM=y
|
|
CONFIG_EAP_AKA=y
|
|
CONFIG_EAP_AKA_PRIME=y
|
|
CONFIG_EAP_PAX=y
|
|
CONFIG_EAP_PSK=y
|
|
CONFIG_EAP_PWD=y
|
|
CONFIG_EAP_SAKE=y
|
|
CONFIG_EAP_GPSK=y
|
|
CONFIG_EAP_GPSK_SHA256=y
|
|
CONFIG_EAP_FAST=y
|
|
CONFIG_EAP_IKEV2=y
|
|
CONFIG_EAP_TNC=y
|
|
CONFIG_EAP_EKE=y
|
|
|
|
CONFIG_TLS=openssl
|
|
CONFIG_TLSV11=y
|
|
CONFIG_TLSV12=y
|
|
|
|
CONFIG_SAE=y
|
|
CONFIG_SAE_PK=y
|
|
|
|
CONFIG_OWE=y
|
|
CONFIG_OCV=y
|
|
|
|
# TKIP is considered insecure and upstream support will be removed in the future
|
|
CONFIG_NO_TKIP=y
|
|
|
|
# Misc
|
|
CONFIG_RADIUS_SERVER=y
|
|
CONFIG_MACSEC=y
|
|
CONFIG_DRIVER_MACSEC_LINUX=y
|
|
CONFIG_FULL_DYNAMIC_VLAN=y
|
|
CONFIG_VLAN_NETLINK=y
|
|
CONFIG_GETRANDOM=y
|
|
CONFIG_INTERWORKING=y
|
|
CONFIG_HS20=y
|
|
CONFIG_FST=y
|
|
CONFIG_FST_TEST=y
|
|
CONFIG_ACS=y
|
|
CONFIG_WNM=y
|
|
CONFIG_MBO=y
|
|
|
|
CONFIG_IEEE80211R=y
|
|
CONFIG_IEEE80211W=y
|
|
CONFIG_IEEE80211N=y
|
|
CONFIG_IEEE80211AC=y
|
|
CONFIG_IEEE80211AX=y
|
|
CONFIG_IEEE80211BE=y
|
|
'' + lib.optionalString (sqlite != null) ''
|
|
CONFIG_SQLITE=y
|
|
'';
|
|
|
|
passAsFile = [ "extraConfig" ];
|
|
|
|
configurePhase = ''
|
|
cd hostapd
|
|
cp -v defconfig .config
|
|
cat $extraConfigPath >> .config
|
|
cat -n .config
|
|
substituteInPlace Makefile --replace /usr/local $out
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags libnl-3.0)"
|
|
'';
|
|
|
|
preInstall = "mkdir -p $out/bin";
|
|
postInstall = ''
|
|
install -vD hostapd.8 -t $man/share/man/man8
|
|
install -vD hostapd_cli.1 -t $man/share/man/man1
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) wpa_supplicant;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://w1.fi/hostapd/";
|
|
description = "User space daemon for access point and authentication servers";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ oddlama ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|