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