about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/mcabber
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-01-04 17:55:41 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-01-04 17:59:30 +0100
commitd0d880f63067deae868ea1b8fa353883fb671b30 (patch)
treef86a782e67b681ad48a599fa7c7c6af0da201061 /pkgs/applications/networking/instant-messengers/mcabber
parenta6673133efda088c44d73f0c1ae752f59587e3f4 (diff)
mcabber: Build with support for GPG.
Originally I had in mind to introduce an attribute like "enableGPG", but
it seems that other distro include it per default, so I guess most users
coming from other distros would expect it that way. And so it is now.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/mcabber')
-rw-r--r--pkgs/applications/networking/instant-messengers/mcabber/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/mcabber/default.nix b/pkgs/applications/networking/instant-messengers/mcabber/default.nix
index 4fda2d9cc0669..6c7e479784143 100644
--- a/pkgs/applications/networking/instant-messengers/mcabber/default.nix
+++ b/pkgs/applications/networking/instant-messengers/mcabber/default.nix
@@ -1,4 +1,6 @@
-{stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth, libotr}:
+{ stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth, libotr
+, gpgme
+}:
 
 stdenv.mkDerivation rec {
   name = "mcabber-${version}";
@@ -9,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "0vgsqw6yn0lzzcnr4fql4ycgf3gwqj6w4p0l4nqnvhkc94w62ikp";
   };
 
-  buildInputs = [openssl ncurses pkgconfig glib loudmouth libotr];
+  buildInputs = [ openssl ncurses pkgconfig glib loudmouth libotr gpgme ];
 
   configureFlags = "--with-openssl=${openssl} --enable-modules --enable-otr";