libsoup: Add missing dependency on libgcrypt.

svn path=/nixpkgs/trunk/; revision=26800
This commit is contained in:
Ludovic Courtès 2011-04-12 09:19:54 +00:00
parent 1c2ba5bcec
commit 5f6260ed3e
2 changed files with 5 additions and 4 deletions

View File

@ -178,7 +178,8 @@ pkgs.makeOverridable
};
libsoup = import ./desktop/libsoup {
inherit (pkgs) stdenv fetchurl pkgconfig libxml2 gnutls libproxy sqlite curl;
inherit (pkgs) stdenv fetchurl pkgconfig libxml2 gnutls libproxy sqlite
curl libgcrypt;
inherit (pkgs.gtkLibs) glib;
inherit GConf gnome_keyring;
};

View File

@ -1,5 +1,5 @@
{stdenv, fetchurl, pkgconfig, libxml2, gnutls, libproxy, sqlite, curl,
glib, GConf, gnome_keyring}:
{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, libproxy, sqlite, curl
, glib, GConf, gnome_keyring, libgcrypt }:
stdenv.mkDerivation {
name = "libsoup-2.28.2";
@ -8,5 +8,5 @@ stdenv.mkDerivation {
sha256 = "002kxjh6dwpps4iwly1bazxlzgqhkfszqqy26mp1gy2il3lzrlcx";
};
buildInputs = [ pkgconfig libxml2 gnutls libproxy sqlite curl
glib GConf gnome_keyring ];
glib GConf gnome_keyring libgcrypt ];
}