{ lib , stdenv , fetchFromGitHub , which , pkg-config , glib , gtk3 , iw , makeWrapper , qrencode , hostapd , getopt , dnsmasq , iproute2 , flock , iptables , gawk }: 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" ''; makeFlags = [ "PREFIX=${placeholder "out"}" ]; postInstall = '' wrapProgram $out/bin/create_ap \ --prefix PATH : ${lib.makeBinPath [ hostapd getopt iw which dnsmasq iproute2 flock iptables gawk ]} 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; }; }