Merge pull request #210845 from r-ryantm/auto-update/linux-router-without-wifi
linux-router-without-wifi: 0.6.6 -> 0.6.7
This commit is contained in:
commit
94897428db
@ -1,8 +1,21 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, makeWrapper
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, makeWrapper
|
||||||
|
|
||||||
# --- Runtime Dependencies ---
|
# --- Runtime Dependencies ---
|
||||||
, bash, procps, iproute2, dnsmasq, iptables
|
, bash
|
||||||
, coreutils, flock, gawk, getopt, gnugrep, gnused, which
|
, procps
|
||||||
|
, iproute2
|
||||||
|
, dnsmasq
|
||||||
|
, iptables
|
||||||
|
, coreutils
|
||||||
|
, flock
|
||||||
|
, gawk
|
||||||
|
, getopt
|
||||||
|
, gnugrep
|
||||||
|
, gnused
|
||||||
|
, which
|
||||||
# `nmcli` is not required for create_ap.
|
# `nmcli` is not required for create_ap.
|
||||||
# Use NetworkManager by default because it is very likely already present
|
# Use NetworkManager by default because it is very likely already present
|
||||||
, useNetworkManager ? true
|
, useNetworkManager ? true
|
||||||
@ -10,7 +23,8 @@
|
|||||||
|
|
||||||
# --- WiFi Hotspot Dependencies ---
|
# --- WiFi Hotspot Dependencies ---
|
||||||
, useWifiDependencies ? true
|
, useWifiDependencies ? true
|
||||||
, hostapd, iw
|
, hostapd
|
||||||
|
, iw
|
||||||
# You only need this if 'iw' can not recognize your adapter.
|
# You only need this if 'iw' can not recognize your adapter.
|
||||||
, useWirelessTools ? true
|
, useWirelessTools ? true
|
||||||
, wirelesstools # for iwconfig
|
, wirelesstools # for iwconfig
|
||||||
@ -26,16 +40,18 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "linux-router";
|
pname = "linux-router";
|
||||||
version = "0.6.6";
|
version = "0.6.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "garywill";
|
owner = "garywill";
|
||||||
repo = "linux-router";
|
repo = "linux-router";
|
||||||
rev = "${version}";
|
rev = "refs/tags/${version}";
|
||||||
sha256 = "sha256-QBxlqKNaCUMVkm8rVTZ5z6tTN9WxgDQxeNkbgCe9KEg=";
|
hash = "sha256-Ote/arHCU6qiTXdK2RXv9848aeW6rcBsrb6nfxIzQLs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [
|
||||||
|
makeWrapper
|
||||||
|
];
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
|
||||||
@ -74,7 +90,8 @@ stdenv.mkDerivation rec {
|
|||||||
- DNS proxy
|
- DNS proxy
|
||||||
- Compatible with NetworkManager (automatically set interface as unmanaged)
|
- Compatible with NetworkManager (automatically set interface as unmanaged)
|
||||||
'';
|
'';
|
||||||
license = licenses.lgpl21;
|
changelog = "https://github.com/garywill/linux-router/releases/tag/${version}";
|
||||||
|
license = licenses.lgpl21Only;
|
||||||
maintainers = with maintainers; [ x3ro ];
|
maintainers = with maintainers; [ x3ro ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user