linux-wifi-hotspot: init at 4.4.0
This commit is contained in:
parent
1730f14d79
commit
ecaee94bc0
2 changed files with 76 additions and 0 deletions
74
pkgs/os-specific/linux/linux-wifi-hotspot/default.nix
Normal file
74
pkgs/os-specific/linux/linux-wifi-hotspot/default.nix
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, which
|
||||||
|
, pkg-config
|
||||||
|
, glib
|
||||||
|
, gtk3
|
||||||
|
, iw
|
||||||
|
, makeWrapper
|
||||||
|
, qrencode
|
||||||
|
, hostapd }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "linux-wifi-hotspot";
|
||||||
|
version = "4.4.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "lakinduakash";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-XCgYWOX7QSdANG6DqYk0yZZqnvZGDl3GaF9KtYRmpJ0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
which
|
||||||
|
pkg-config
|
||||||
|
makeWrapper
|
||||||
|
qrencode
|
||||||
|
hostapd
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
glib
|
||||||
|
gtk3
|
||||||
|
];
|
||||||
|
|
||||||
|
outputs = [ "out" ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace ./src/scripts/Makefile \
|
||||||
|
--replace "etc" "$out/etc"
|
||||||
|
substituteInPlace ./src/scripts/wihotspot \
|
||||||
|
--replace "/usr" "$out"
|
||||||
|
substituteInPlace ./src/scripts/create_ap.service \
|
||||||
|
--replace "/usr/bin/create_ap" "$out/bin/create_cap" \
|
||||||
|
--replace "/etc/create_ap.conf" "$out/etc/create_cap.conf"
|
||||||
|
'';
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"PREFIX=${placeholder "out"}"
|
||||||
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram $out/bin/create_ap \
|
||||||
|
--prefix PATH : ${lib.makeBinPath [ hostapd ]}
|
||||||
|
|
||||||
|
wrapProgram $out/bin/wihotspot-gui \
|
||||||
|
--prefix PATH : ${lib.makeBinPath [ iw ]} \
|
||||||
|
--prefix PATH : "${placeholder "out"}/bin"
|
||||||
|
|
||||||
|
wrapProgram $out/bin/wihotspot \
|
||||||
|
--prefix PATH : ${lib.makeBinPath [ iw ]} \
|
||||||
|
--prefix PATH : "${placeholder "out"}/bin"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Feature-rich wifi hotspot creator for Linux which provides both GUI and command-line interface";
|
||||||
|
homepage = "https://github.com/lakinduakash/linux-wifi-hotspot";
|
||||||
|
license = licenses.bsd2;
|
||||||
|
maintainers = with maintainers; [ onny ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -22699,6 +22699,8 @@ with pkgs;
|
||||||
|
|
||||||
linuxConsoleTools = callPackage ../os-specific/linux/consoletools { };
|
linuxConsoleTools = callPackage ../os-specific/linux/consoletools { };
|
||||||
|
|
||||||
|
linux-wifi-hotspot = callPackage ../os-specific/linux/linux-wifi-hotspot { };
|
||||||
|
|
||||||
linthesia = callPackage ../games/linthesia/default.nix { };
|
linthesia = callPackage ../games/linthesia/default.nix { };
|
||||||
|
|
||||||
libreelec-dvb-firmware = callPackage ../os-specific/linux/firmware/libreelec-dvb-firmware { };
|
libreelec-dvb-firmware = callPackage ../os-specific/linux/firmware/libreelec-dvb-firmware { };
|
||||||
|
|
Loading…
Reference in a new issue