Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0a11634a29c1
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 716f39306528
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 12, 2020

  1. gnutls: 3.6.13 -> 3.6.14

    Fixes CVE-2020-13777 [1].
    
    Changes: https://lists.gnupg.org/pipermail/gnutls-help/2020-June/004648.html
    
    [1] https://nvd.nist.gov/vuln/detail/CVE-2020-13777
    
    (cherry picked from commit 1dba117, PR #89884)
    19.09 isn't really supported anymore, but this CVE seems very important.
    cole-h authored and vcunat committed Jun 12, 2020
    Copy the full SHA
    716f393 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/gnutls/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/gnutls/default.nix
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@

assert guileBindings -> guile != null;
let
version = "3.6.13";
version = "3.6.14";

# XXX: Gnulib's `test-select' fails on FreeBSD:
# http://hydra.nixos.org/build/2962084/nixlog/1/raw .
@@ -24,7 +24,7 @@ stdenv.mkDerivation {

src = fetchurl {
url = "mirror://gnupg/gnutls/v3.6/gnutls-${version}.tar.xz";
sha256 = "0f1gnm0756qms5cpx6yn6xb8d3imc2gkqmygf12n9x6r8zs1s11j";
sha256 = "0qwxsfizynly0ns537vnhnlm5lh03la4vbsmz675n0n7vqd7ac2n";
};

outputs = [ "bin" "dev" "out" "man" "devdoc" ];