hostapd: fix hostapd noscan patch url.

Something somehow got wrong in #63699; some adjustments made after the
review have been discarded :/
This commit is contained in:
Félix Baylac-Jacqué 2019-06-26 08:16:44 +02:00
parent 40baa1f2de
commit f3b94dee34
No known key found for this signature in database
GPG key ID: EFD315F31848DBA4

View file

@ -1,11 +1,7 @@
{ stdenv, fetchurl, pkgconfig, libnl, openssl, sqlite ? null }:
with stdenv.lib;
let noScanPatch = fetchurl {
url="https://git.telliq.com/gtu/openwrt/raw/master/package/network/services/hostapd/patches/300-noscan.patch";
sha256 = "04wg4yjc19wmwk6gia067z99gzzk9jacnwxh5wyia7k5wg71yj5k";
};
in stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
name = "hostapd-${version}";
version = "2.8";
@ -17,7 +13,13 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libnl openssl sqlite ];
patches = [ noScanPatch ];
patches = [
(fetchurl {
# Note: fetchurl seems to be unhappy with openwrt git
# server's URLs containing semicolons. Using the github mirror instead.
url = "https://raw.githubusercontent.com/openwrt/openwrt/master/package/network/services/hostapd/patches/300-noscan.patch";
sha256 = "04wg4yjc19wmwk6gia067z99gzzk9jacnwxh5wyia7k5wg71yj5k";})
];
outputs = [ "out" "man" ];