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

Commits on Apr 23, 2020

  1. msmtp: fix for broken queueing

    peterhoeg authored and rycee committed Apr 23, 2020
    Copy the full SHA
    920c51e View commit details
Showing with 6 additions and 1 deletion.
  1. +6 −1 pkgs/applications/networking/msmtp/default.nix
7 changes: 6 additions & 1 deletion pkgs/applications/networking/msmtp/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, autoreconfHook, pkgconfig, texinfo
{ stdenv, lib, fetchurl, fetchpatch, autoreconfHook, pkgconfig, texinfo
, netcat-gnu, gnutls, gsasl, libidn2, Security
, withKeyring ? true, libsecret ? null
, systemd ? null }:
@@ -16,8 +16,13 @@ in stdenv.mkDerivation rec {
sha256 = "1rarck61mz3mwg0l30vjj6j9fq6gc7gic0r1c1ppwpq2izj57jzc";
};

# the 2nd patch should go when 1.8.9 is released
patches = [
./paths.patch
(fetchpatch {
url = "https://github.com/marlam/msmtp-mirror/commit/c78f24347ec996c7a3830b48403bf3736afca071.patch";
sha256 = "0d4sc2f5838jriv65wahpgvwckkzqhdk3hs660fyg80si2i0l1bx";
})
];

buildInputs = [ gnutls gsasl libidn2 ]