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

Commits on Aug 14, 2018

  1. msmtp: 1.6.6 -> 1.6.8

    Also update homepage to match new project location.
    rycee authored and garbas committed Aug 14, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    BurntSushi Andrew Gallant
    Copy the full SHA
    3727609 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/networking/msmtp/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/networking/msmtp/default.nix
Original file line number Diff line number Diff line change
@@ -10,11 +10,11 @@ let
in stdenv.mkDerivation rec {
pname = "msmtp";
name = "${pname}-${version}";
version = "1.6.6";
version = "1.6.8";

src = fetchurl {
url = "mirror://sourceforge/msmtp/${name}.tar.xz";
sha256 = "0ppvww0sb09bnsrpqnvlrn8vx231r24xn2iiwpy020mxc8gxn5fs";
url = "https://marlam.de/msmtp/releases/${name}.tar.xz";
sha256 = "1ysrnshvwhzwmvb2walw5i9jdzlvmckj7inr0xnvb26q0jirbzsm";
};

patches = [
@@ -52,7 +52,7 @@ in stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "Simple and easy to use SMTP client with excellent sendmail compatibility";
homepage = http://msmtp.sourceforge.net/;
homepage = https://marlam.de/msmtp/;
license = licenses.gpl3;
maintainers = with maintainers; [ garbas peterhoeg ];
platforms = platforms.unix;