msmtp: use netcat-gnu to unbreak darwin

+3 -2
+3 -2
pkgs/applications/networking/msmtp/default.nix
··· 1 { stdenv, lib, fetchurl, autoreconfHook, pkgconfig 2 - , openssl, netcat, gnutls, gsasl, libidn, Security, systemd }: 3 4 let 5 tester = "n"; # {x| |p|P|n|s} ··· 28 postInstall = '' 29 substitute scripts/msmtpq/msmtpq $out/bin/msmtpq \ 30 --replace @msmtp@ $out/bin/msmtp \ 31 - --replace @nc@ ${netcat}/bin/nc \ 32 --replace @journal@ ${journal} \ 33 ${lib.optionalString (journal == "y") "--replace @systemdcat@ ${systemd}/bin/systemd-cat" } \ 34 --replace @test@ ${tester}
··· 1 { stdenv, lib, fetchurl, autoreconfHook, pkgconfig 2 + , openssl, netcat-gnu, gnutls, gsasl, libidn, Security 3 + , systemd ? null }: 4 5 let 6 tester = "n"; # {x| |p|P|n|s} ··· 29 postInstall = '' 30 substitute scripts/msmtpq/msmtpq $out/bin/msmtpq \ 31 --replace @msmtp@ $out/bin/msmtp \ 32 + --replace @nc@ ${netcat-gnu}/bin/nc \ 33 --replace @journal@ ${journal} \ 34 ${lib.optionalString (journal == "y") "--replace @systemdcat@ ${systemd}/bin/systemd-cat" } \ 35 --replace @test@ ${tester}