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
nativeBuildInputs = [ pkgconfig ];
63
buildInputs = [ libnl openssl sqlite ];
64
0
0
65
extraConfig = ''
66
CONFIG_DRIVER_WIRED=y
67
CONFIG_LIBNL32=y
···
103
'';
104
105
preInstall = "mkdir -p $out/bin";
0
0
0
0
106
107
meta = {
108
homepage = http://hostap.epitest.fi;
···
62
nativeBuildInputs = [ pkgconfig ];
63
buildInputs = [ libnl openssl sqlite ];
64
65
+
outputs = [ "out" "man" ];
66
+
67
extraConfig = ''
68
CONFIG_DRIVER_WIRED=y
69
CONFIG_LIBNL32=y
···
105
'';
106
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
+
'';
112
113
meta = {
114
homepage = http://hostap.epitest.fi;