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>
This commit is contained in:
aszlig 2015-01-04 17:55:41 +01:00
parent a6673133ef
commit d0d880f630
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -1,4 +1,6 @@
{stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth, libotr}: { stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth, libotr
, gpgme
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "mcabber-${version}"; name = "mcabber-${version}";
@ -9,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "0vgsqw6yn0lzzcnr4fql4ycgf3gwqj6w4p0l4nqnvhkc94w62ikp"; 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"; configureFlags = "--with-openssl=${openssl} --enable-modules --enable-otr";