aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/networking/msmtp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/networking/msmtp/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/networking/msmtp/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/applications/networking/msmtp/default.nix b/nixpkgs/pkgs/applications/networking/msmtp/default.nix
index 486b34ecb30..066103fdc8c 100644
--- a/nixpkgs/pkgs/applications/networking/msmtp/default.nix
+++ b/nixpkgs/pkgs/applications/networking/msmtp/default.nix
@@ -1,5 +1,5 @@
{ stdenv, lib, fetchurl, autoreconfHook, pkgconfig
-, netcat-gnu, gnutls, gsasl, libidn2, Security
+, netcat-gnu, gnutls, gsasl, libidn2, Security, texinfo
, withKeyring ? true, libsecret ? null
, systemd ? null }:
@@ -20,7 +20,7 @@ in stdenv.mkDerivation rec {
./paths.patch
];
- buildInputs = [ gnutls gsasl libidn2 ]
+ buildInputs = [ gnutls gsasl libidn2 texinfo ]
++ stdenv.lib.optional stdenv.isDarwin Security
++ stdenv.lib.optional withKeyring libsecret;