Skip to content

Commit

Permalink
hostapd: 2.5 -> 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Feb 16, 2017
1 parent f6778c8 commit df58ed2
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions pkgs/os-specific/linux/hostapd/default.nix
@@ -1,23 +1,15 @@
{ stdenv, fetchurl, fetchpatch, pkgconfig, libnl, openssl, sqlite ? null }:
{ stdenv, fetchurl, pkgconfig, libnl, openssl, sqlite ? null }:

with stdenv.lib;
stdenv.mkDerivation rec {
name = "hostapd-${version}";
version = "2.5";
version = "2.6";

src = fetchurl {
url = "http://hostap.epitest.fi/releases/${name}.tar.gz";
sha256 = "0jn77r39ysshkzihv5rjbdajqazci59v2yab4rn05my09najs9wf";
sha256 = "0z8ilypad82q3l6q6kbv6hczvhjn8k63j8051x5yqfyjq686nlh1";
};

patches = [
(fetchpatch {
url = "https://raw.githubusercontent.com/voidlinux/void-packages/a7bcbc258ba9884bccde831c0ae2069cade99e41/srcpkgs/wpa_supplicant/patches/patch-src_crypto_tls_openssl_c";
sha256 = "1ifa2i54a7ijsha197dyldal3m4q5i05ih2sk15f5a5ybb6x7vmp";
addPrefixes = true;
})
];

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libnl openssl sqlite ];

Expand Down

0 comments on commit df58ed2

Please sign in to comment.