mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
Pidgin needs libgcrypt for GNUTLS
svn path=/nixpkgs/trunk/; revision=26819
This commit is contained in:
parent
b4dde807c2
commit
6c133d03f6
@ -17,6 +17,7 @@
|
||||
, lib, python
|
||||
, openssl ? null
|
||||
, gnutls ? null
|
||||
, libgcrypt ? null
|
||||
, voice ? null
|
||||
} :
|
||||
|
||||
@ -34,6 +35,7 @@ stdenv.mkDerivation {
|
||||
libxml2]
|
||||
++ (lib.optional (openssl != null) openssl)
|
||||
++ (lib.optional (gnutls != null) gnutls)
|
||||
++ (lib.optional (libgcrypt != null) libgcrypt)
|
||||
++
|
||||
[nss nspr farsight2
|
||||
libXScrnSaver ncurses python
|
||||
|
Loading…
Reference in New Issue
Block a user