forked from mirrors/nixpkgs
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:
parent
a6673133ef
commit
d0d880f630
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue