12 lines
231 B
Nix
12 lines
231 B
Nix
self: super:
|
|
let
|
|
msmtp = super.msmtp.overrideAttrs (attrs: rec {
|
|
configureFlags = attrs.configureFlags ++ [ "--with-tls=openssl" ];
|
|
buildInputs = attrs.buildInputs ++ [ super.openssl ];
|
|
});
|
|
in
|
|
{
|
|
# inherit msmtp;
|
|
}
|
|
|