hostapd: install man pages
This commit is contained in:
parent
a32b6d5c9a
commit
04a2885dbf
|
@ -62,6 +62,8 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ libnl openssl sqlite ];
|
buildInputs = [ libnl openssl sqlite ];
|
||||||
|
|
||||||
|
outputs = [ "out" "man" ];
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
CONFIG_DRIVER_WIRED=y
|
CONFIG_DRIVER_WIRED=y
|
||||||
CONFIG_LIBNL32=y
|
CONFIG_LIBNL32=y
|
||||||
|
@ -103,6 +105,10 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preInstall = "mkdir -p $out/bin";
|
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
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://hostap.epitest.fi;
|
homepage = http://hostap.epitest.fi;
|
||||||
|
|
Loading…
Reference in New Issue