tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
hostapd: install man pages
Robin Gloster
7 years ago
04a2885d
a32b6d5c
+6
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
hostapd
default.nix
+6
pkgs/os-specific/linux/hostapd/default.nix
···
62
62
nativeBuildInputs = [ pkgconfig ];
63
63
buildInputs = [ libnl openssl sqlite ];
64
64
65
65
+
outputs = [ "out" "man" ];
66
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
108
+
postInstall = ''
109
109
+
install -vD hostapd.8 -t $man/share/man/man8
110
110
+
install -vD hostapd_cli.1 -t $man/share/man/man1
111
111
+
'';
106
112
107
113
meta = {
108
114
homepage = http://hostap.epitest.fi;