libgda: add required openssl dependency, previously implicit

This commit is contained in:
Luca Bruno 2015-07-30 12:01:30 +02:00
parent 5e01537a9b
commit 0743aaf878

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3 }: { stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl }:
let let
major = "5.2"; major = "5.2";
@ -19,7 +19,7 @@ in stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
buildInputs = [ pkgconfig intltool itstool libxml2 gtk3 ]; buildInputs = [ pkgconfig intltool itstool libxml2 gtk3 openssl ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Database access library"; description = "Database access library";