Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 56dabf8cf2f0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: abc9b32fc609
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 7, 2019

  1. hostapd: 2.8 -> 2.9

    Associated release note:
    https://w1.fi/security/2019-6/sae-eap-pwd-side-channel-attack-update.txt
    
    Note: we are building hostapd with the CONFIG_EAP_PWD=y flag by
    default, we might be impacted by a EAP_PWD side-channel attach on
    hostapd 2.8.
    picnoir authored and Matthieu Coudron committed Dec 7, 2019
    Copy the full SHA
    abc9b32 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/os-specific/linux/hostapd/default.nix
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/hostapd/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "hostapd";
version = "2.8";
version = "2.9";

src = fetchurl {
url = "https://w1.fi/releases/${pname}-${version}.tar.gz";
sha256 = "1c74rrazkhy4lr7pwgwa2igzca7h9l4brrs7672kiv7fwqmm57wj";
sha256 = "1mrbvg4v7vm7mknf0n29mf88k3s4a4qj6r4d51wq8hmjj1m7s7c8";
};

nativeBuildInputs = [ pkgconfig ];