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

33 lines
991 B
Nix
Raw Normal View History

2012-09-07 06:04:47 -07:00
{ stdenv, fetchurl, libnl, openssl, pkgconfig }:
stdenv.mkDerivation rec {
name = "hostapd-${version}";
2014-10-12 01:12:53 -07:00
version = "2.3";
src = fetchurl {
2013-09-16 14:06:51 -07:00
url = "http://hostap.epitest.fi/releases/${name}.tar.gz";
2014-10-12 01:12:53 -07:00
sha256 = "1pxlkfj1r2k5lxph2x9l02jrn652b3whcfh6l604rbbghxv2nk69";
};
2012-09-07 06:04:47 -07:00
buildInputs = [ libnl openssl pkgconfig ];
configurePhase = ''
cd hostapd
2012-09-07 06:04:47 -07:00
substituteInPlace Makefile --replace "/usr/local/bin" "$out/bin"
mv defconfig .config
2012-09-07 06:04:47 -07:00
echo CONFIG_LIBNL32=y | tee -a .config
2013-03-11 02:31:51 -07:00
echo CONFIG_IEEE80211N=y | tee -a .config
2012-09-07 06:04:47 -07:00
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags libnl-3.0)"
'';
preInstall = "mkdir -p $out/bin";
meta = with stdenv.lib; {
2013-09-16 14:06:51 -07:00
homepage = http://hostap.epitest.fi;
2014-04-02 21:03:42 -07: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 02:31:51 -07:00
}