3
0
Fork 0
forked from mirrors/nixpkgs

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
major = "5.2";
@ -19,7 +19,7 @@ in stdenv.mkDerivation rec {
enableParallelBuilding = true;
buildInputs = [ pkgconfig intltool itstool libxml2 gtk3 ];
buildInputs = [ pkgconfig intltool itstool libxml2 gtk3 openssl ];
meta = with stdenv.lib; {
description = "Database access library";