nixpkgs/pkgs/os-specific/linux/hostapd/default.nix

34 lines
992 B
Nix
Raw Normal View History

2012-09-07 15:04:47 +02:00
{ stdenv, fetchurl, libnl, openssl, pkgconfig }:
2015-03-26 20:30:51 +01:00
stdenv.mkDerivation rec {
name = "hostapd-${version}";
2015-03-26 20:30:51 +01:00
version = "2.4";
src = fetchurl {
2013-09-16 23:06:51 +02:00
url = "http://hostap.epitest.fi/releases/${name}.tar.gz";
2015-03-26 20:30:51 +01:00
sha256 = "0zv5pnfrp6z7jjbskzgdb2rlmlbvdxmmis7ca94x5jy9s5mypq3g";
};
2012-09-07 15:04:47 +02:00
buildInputs = [ libnl openssl pkgconfig ];
configurePhase = ''
cd hostapd
2012-09-07 15:04:47 +02:00
substituteInPlace Makefile --replace "/usr/local/bin" "$out/bin"
mv defconfig .config
2012-09-07 15:04:47 +02:00
echo CONFIG_LIBNL32=y | tee -a .config
2013-03-11 10:31:51 +01:00
echo CONFIG_IEEE80211N=y | tee -a .config
2012-09-07 15:04:47 +02:00
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags libnl-3.0)"
'';
2015-03-26 20:30:51 +01:00
preInstall = "mkdir -p $out/bin";
meta = with stdenv.lib; {
2013-09-16 23:06:51 +02:00
homepage = http://hostap.epitest.fi;
2014-04-03 06:03:42 +02:00
repositories.git = git://w1.fi/hostap.git;
description = "A user space daemon for access point and authentication servers";
license = licenses.gpl2;
maintainers = [ maintainers.phreedom ];
platforms = platforms.linux;
};
2013-03-11 10:31:51 +01:00
}