aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/msmtp/default.nix
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-03-28 12:40:30 +0100
committerGitHub <noreply@github.com>2020-03-28 12:40:30 +0100
commitb3e6d205b8c9d69b3f81247deead42597b166158 (patch)
tree1637fb1a3a9dbf4619361855a0cd910b93acbf04 /pkgs/applications/networking/msmtp/default.nix
parentf076eced648f0fc034746e28ec63c31634fb600a (diff)
msmtp: adding texinfo to buildInputs (#83497)
Diffstat (limited to 'pkgs/applications/networking/msmtp/default.nix')
-rw-r--r--pkgs/applications/networking/msmtp/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/msmtp/default.nix b/pkgs/applications/networking/msmtp/default.nix
index 486b34ecb308..58190944b640 100644
--- a/pkgs/applications/networking/msmtp/default.nix
+++ b/pkgs/applications/networking/msmtp/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, autoreconfHook, pkgconfig
+{ stdenv, lib, fetchurl, autoreconfHook, pkgconfig, texinfo
, netcat-gnu, gnutls, gsasl, libidn2, Security
, withKeyring ? true, libsecret ? null
, systemd ? null }:
@@ -24,7 +24,7 @@ in stdenv.mkDerivation rec {
++ stdenv.lib.optional stdenv.isDarwin Security
++ stdenv.lib.optional withKeyring libsecret;
- nativeBuildInputs = [ autoreconfHook pkgconfig ];
+ nativeBuildInputs = [ autoreconfHook pkgconfig texinfo ];
configureFlags =
[ "--sysconfdir=/etc" ] ++ stdenv.lib.optional stdenv.isDarwin [ "--with-macosx-keyring" ];