summary refs log tree commit diff
path: root/pkgs/os-specific/linux/hostapd
diff options
context:
space:
mode:
authorJack Cummings <jack@mudshark.org>2013-03-11 02:31:51 -0700
committerJack Cummings <jack@mudshark.org>2013-03-11 02:31:51 -0700
commit3ac299934d41de9e9e7afd29920ec8c7e89036f6 (patch)
tree36b9162635e4e198ca1677eb988eda2be5719ae4 /pkgs/os-specific/linux/hostapd
parentc94595f13b24dcde98688134cb29d4b0b06602ff (diff)
downloadnixpkgs-3ac299934d41de9e9e7afd29920ec8c7e89036f6.tar
nixpkgs-3ac299934d41de9e9e7afd29920ec8c7e89036f6.tar.gz
nixpkgs-3ac299934d41de9e9e7afd29920ec8c7e89036f6.tar.bz2
nixpkgs-3ac299934d41de9e9e7afd29920ec8c7e89036f6.tar.lz
nixpkgs-3ac299934d41de9e9e7afd29920ec8c7e89036f6.tar.xz
nixpkgs-3ac299934d41de9e9e7afd29920ec8c7e89036f6.tar.zst
nixpkgs-3ac299934d41de9e9e7afd29920ec8c7e89036f6.zip
enable 802.11n by default.
Diffstat (limited to 'pkgs/os-specific/linux/hostapd')
-rw-r--r--pkgs/os-specific/linux/hostapd/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/hostapd/default.nix b/pkgs/os-specific/linux/hostapd/default.nix
index f13a1033f8b..b8e5055f056 100644
--- a/pkgs/os-specific/linux/hostapd/default.nix
+++ b/pkgs/os-specific/linux/hostapd/default.nix
@@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
     substituteInPlace Makefile --replace "/usr/local/bin" "$out/bin"
     mv defconfig .config
     echo CONFIG_LIBNL32=y | tee -a .config
+    echo CONFIG_IEEE80211N=y | tee -a .config
     export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags libnl-3.0)"
   '';
   preInstall = "mkdir -p $out/bin";
@@ -27,4 +28,4 @@ stdenv.mkDerivation rec {
     maintainers = [ maintainers.phreedom ];
     platforms = platforms.linux;
   };
-}
\ No newline at end of file
+}