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

Commits on Mar 27, 2018

  1. Copy the full SHA
    4bf9b4a View commit details
  2. openssl_1_1_0: 1.1.0g -> 1.1.0h (fixes CVE-2018-0739, CVE-2017-3738)

    Also fixes CVE-2018-0733 but we do not support HP-UX to my knowledge :-)
    
    Announcement at [1].
    
    [1] https://www.openssl.org/news/secadv/20180327.txt
    andir committed Mar 27, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    Zuoqiu-Yingyi Yingyi / 颖逸
    Copy the full SHA
    7211032 View commit details
  3. Merge pull request #37931 from andir/openssl

    openssl{,1_1_0} update (1.0.2o, 1.1.0h)
    andir authored Mar 27, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    34fe4bc View commit details
Showing with 4 additions and 11 deletions.
  1. +4 −11 pkgs/development/libraries/openssl/default.nix
15 changes: 4 additions & 11 deletions pkgs/development/libraries/openssl/default.nix
Original file line number Diff line number Diff line change
@@ -113,20 +113,13 @@ let
in {

openssl_1_0_2 = common {
version = "1.0.2n";
sha256 = "1zm82pyq5a9jm10q6iv7d3dih3xwjds4x30fqph3k317byvsn2rp";
version = "1.0.2o";
sha256 = "0kcy13l701054nhpbd901mz32v1kn4g311z0nifd83xs2jbmqgzc";
};

openssl_1_1_0 = common {
version = "1.1.0g";
sha256 = "1bvka2wf33w2vxv7yw578nnjqyhz2b3chvfb0l4k2ffscw950kfy";
patches = [
(fetchpatch {
name = "CVE-2017-3738.patch";
url = "https://github.com/openssl/openssl/commit/563066.patch";
sha256 = "0ni9fwpxf8raw8b58pfa15akbqmxx4q64v0ldsm4b9dqhbxf8mkz";
})
];
version = "1.1.0h";
sha256 = "05x509lccqjscgyi935z809pwfm708islypwhmjnb6cyvrn64daq";
};

}