Merge pull request #210845 from r-ryantm/auto-update/linux-router-without-wifi

linux-router-without-wifi: 0.6.6 -> 0.6.7

authored by Fabian Affolter and committed by GitHub 94897428 4dbc2fe8

+26 -9
+26 -9
pkgs/tools/networking/linux-router/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, makeWrapper 2 3 # --- Runtime Dependencies --- 4 - , bash, procps, iproute2, dnsmasq, iptables 5 - , coreutils, flock, gawk, getopt, gnugrep, gnused, which 6 # `nmcli` is not required for create_ap. 7 # Use NetworkManager by default because it is very likely already present 8 , useNetworkManager ? true ··· 10 11 # --- WiFi Hotspot Dependencies --- 12 , useWifiDependencies ? true 13 - , hostapd, iw 14 # You only need this if 'iw' can not recognize your adapter. 15 , useWirelessTools ? true 16 , wirelesstools # for iwconfig ··· 26 27 stdenv.mkDerivation rec { 28 pname = "linux-router"; 29 - version = "0.6.6"; 30 31 src = fetchFromGitHub { 32 owner = "garywill"; 33 repo = "linux-router"; 34 - rev = "${version}"; 35 - sha256 = "sha256-QBxlqKNaCUMVkm8rVTZ5z6tTN9WxgDQxeNkbgCe9KEg="; 36 }; 37 38 - nativeBuildInputs = [ makeWrapper ]; 39 40 dontBuild = true; 41 ··· 74 - DNS proxy 75 - Compatible with NetworkManager (automatically set interface as unmanaged) 76 ''; 77 - license = licenses.lgpl21; 78 maintainers = with maintainers; [ x3ro ]; 79 platforms = platforms.linux; 80 };
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , makeWrapper 5 6 # --- Runtime Dependencies --- 7 + , bash 8 + , procps 9 + , iproute2 10 + , dnsmasq 11 + , iptables 12 + , coreutils 13 + , flock 14 + , gawk 15 + , getopt 16 + , gnugrep 17 + , gnused 18 + , which 19 # `nmcli` is not required for create_ap. 20 # Use NetworkManager by default because it is very likely already present 21 , useNetworkManager ? true ··· 23 24 # --- WiFi Hotspot Dependencies --- 25 , useWifiDependencies ? true 26 + , hostapd 27 + , iw 28 # You only need this if 'iw' can not recognize your adapter. 29 , useWirelessTools ? true 30 , wirelesstools # for iwconfig ··· 40 41 stdenv.mkDerivation rec { 42 pname = "linux-router"; 43 + version = "0.6.7"; 44 45 src = fetchFromGitHub { 46 owner = "garywill"; 47 repo = "linux-router"; 48 + rev = "refs/tags/${version}"; 49 + hash = "sha256-Ote/arHCU6qiTXdK2RXv9848aeW6rcBsrb6nfxIzQLs="; 50 }; 51 52 + nativeBuildInputs = [ 53 + makeWrapper 54 + ]; 55 56 dontBuild = true; 57 ··· 90 - DNS proxy 91 - Compatible with NetworkManager (automatically set interface as unmanaged) 92 ''; 93 + changelog = "https://github.com/garywill/linux-router/releases/tag/${version}"; 94 + license = licenses.lgpl21Only; 95 maintainers = with maintainers; [ x3ro ]; 96 platforms = platforms.linux; 97 };