mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
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 {
|
||||
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;
|
||||
};
|
||||
|
@ -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 ];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user