fix mail relay and add infiniband pkey

This commit is contained in:
Jonas Juselius
2022-08-18 10:36:06 +02:00
parent 4e30572bde
commit 3102c977b0
5 changed files with 119 additions and 18 deletions

View File

@@ -0,0 +1,11 @@
self: super:
let
msmtp = super.msmtp.overrideAttrs (attrs: rec {
configureFlags = attrs.configureFlags ++ [ "--with-tls=openssl" ];
buildInputs = attrs.buildInputs ++ [ super.openssl ];
});
in
{
# inherit msmtp;
}