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

Commits on Sep 30, 2019

  1. exim: 4.92.2 -> 4.92.3

    security update: CVE-2019-16928
    pacien committed Sep 30, 2019
    Copy the full SHA
    aaa1ba3 View commit details

Commits on Oct 2, 2019

  1. Merge pull request #70071 from pacien/exim-v4.92.3

    [security] exim: 4.92.2 -> 4.92.3
    fpletz authored Oct 2, 2019
    Copy the full SHA
    e4bdcc3 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/mail/exim/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/mail/exim/default.nix
Original file line number Diff line number Diff line change
@@ -7,11 +7,11 @@
}:

stdenv.mkDerivation rec {
name = "exim-4.92.2";
name = "exim-4.92.3";

src = fetchurl {
url = "https://ftp.exim.org/pub/exim/exim4/${name}.tar.xz";
sha256 = "0m56jsh2fzvwj4rdpcc3pkd5vsi40cjrpzalis7l1zq33m4axmq1";
sha256 = "1zfj4zblv5881qxpzkrg3f6a96pbcq270s9p6p1w85lfxjsknif4";
};

nativeBuildInputs = [ pkgconfig ];