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: cc9b18f223eb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 360e57a567a7
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 21, 2019

  1. Revert "mbedtls: 2.16.0 -> 2.17.0"

    This reverts commit ba3b9c0.
    
    cc #60625 #71452
    fpletz committed Oct 21, 2019
    Copy the full SHA
    bf2f1c8 View commit details
  2. mbedtls: 2.16.0 -> 2.16.3

    Fixes CVE-2019-16910. Fixes #71452.
    fpletz committed Oct 21, 2019
    Copy the full SHA
    360e57a View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/development/libraries/mbedtls/default.nix
5 changes: 3 additions & 2 deletions pkgs/development/libraries/mbedtls/default.nix
Original file line number Diff line number Diff line change
@@ -11,13 +11,14 @@

stdenv.mkDerivation rec {
pname = "mbedtls";
version = "2.17.0";
name = "mbedtls-${version}";
version = "2.16.3";

src = fetchFromGitHub {
owner = "ARMmbed";
repo = "mbedtls";
rev = "${pname}-${version}";
sha256 = "1mk3xv61wvqqrzd6jnrz8csyfnwwwwpjzywj3fsfy99p51d7wqgw";
sha256 = "1mzh92yyz93099a1gb2wvwc76jv12d1k1wg9k3dimbgczxgrkirc";
};

nativeBuildInputs = [ cmake ninja perl python ];