hostapd: install man pages

+6
+6
pkgs/os-specific/linux/hostapd/default.nix
··· 62 62 nativeBuildInputs = [ pkgconfig ]; 63 63 buildInputs = [ libnl openssl sqlite ]; 64 64 65 + outputs = [ "out" "man" ]; 66 + 65 67 extraConfig = '' 66 68 CONFIG_DRIVER_WIRED=y 67 69 CONFIG_LIBNL32=y ··· 103 105 ''; 104 106 105 107 preInstall = "mkdir -p $out/bin"; 108 + postInstall = '' 109 + install -vD hostapd.8 -t $man/share/man/man8 110 + install -vD hostapd_cli.1 -t $man/share/man/man1 111 + ''; 106 112 107 113 meta = { 108 114 homepage = http://hostap.epitest.fi;