evolution: add missing openssl dependency

Fixes recently introduced "ld: cannot find -lcrypto" build error.
This commit is contained in:
Bjørn Forsman 2015-07-29 15:01:04 +02:00
parent b5bb6b4fac
commit 490979c7ce

View file

@ -1,5 +1,5 @@
{ fetchurl, stdenv, pkgconfig, gnome3, python
, intltool, libsoup, libxml2, libsecret, icu, sqlite
, intltool, libsoup, libxml2, libsecret, icu, sqlite, openssl
, p11_kit, db, nspr, nss, libical, gperf, makeWrapper, valaSupport ? true, vala }:
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
buildInputs = with gnome3;
[ pkgconfig glib python intltool libsoup libxml2 gtk gnome_online_accounts
gcr p11_kit libgweather libgdata gperf makeWrapper icu sqlite ]
gcr p11_kit libgweather libgdata gperf makeWrapper icu sqlite openssl ]
++ stdenv.lib.optional valaSupport vala;
propagatedBuildInputs = [ libsecret nss nspr libical db ];