aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-03-27 14:58:59 +0100
committerKatharina Fey <kookie@spacekookie.de>2020-03-27 14:58:59 +0100
commit3358c7a7623909f21b0bdc5fb641af01bc011ea6 (patch)
tree14c9a47ec6ec0a828b7a7c390200a92bdf5761d3 /nixpkgs/pkgs
parent96f063dd321abc80ecaa156226cfb7cf9540315a (diff)
msmtp: adding texinfo to buildInputs
Diffstat (limited to 'nixpkgs/pkgs')
-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;