libsoup: Add missing dependency on libgcrypt.
svn path=/nixpkgs/trunk/; revision=26800
This commit is contained in:
parent
1c2ba5bcec
commit
5f6260ed3e
@ -178,7 +178,8 @@ pkgs.makeOverridable
|
|||||||
};
|
};
|
||||||
|
|
||||||
libsoup = import ./desktop/libsoup {
|
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 (pkgs.gtkLibs) glib;
|
||||||
inherit GConf gnome_keyring;
|
inherit GConf gnome_keyring;
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{stdenv, fetchurl, pkgconfig, libxml2, gnutls, libproxy, sqlite, curl,
|
{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, libproxy, sqlite, curl
|
||||||
glib, GConf, gnome_keyring}:
|
, glib, GConf, gnome_keyring, libgcrypt }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "libsoup-2.28.2";
|
name = "libsoup-2.28.2";
|
||||||
@ -8,5 +8,5 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "002kxjh6dwpps4iwly1bazxlzgqhkfszqqy26mp1gy2il3lzrlcx";
|
sha256 = "002kxjh6dwpps4iwly1bazxlzgqhkfszqqy26mp1gy2il3lzrlcx";
|
||||||
};
|
};
|
||||||
buildInputs = [ pkgconfig libxml2 gnutls libproxy sqlite curl
|
buildInputs = [ pkgconfig libxml2 gnutls libproxy sqlite curl
|
||||||
glib GConf gnome_keyring ];
|
glib GConf gnome_keyring libgcrypt ];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user