Add missing dependency
svn path=/nixpkgs/trunk/; revision=17542
This commit is contained in:
parent
f8abffe6b1
commit
77da703f41
|
@ -136,7 +136,7 @@ rec {
|
|||
libsoup = import ./desktop/libsoup {
|
||||
inherit (pkgs) stdenv fetchurl pkgconfig libxml2 gnutls libproxy sqlite curl;
|
||||
inherit (pkgs.gtkLibs) glib;
|
||||
inherit GConf;
|
||||
inherit GConf gnome_keyring;
|
||||
};
|
||||
|
||||
libwnck = import ./desktop/libwnck {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{stdenv, fetchurl, pkgconfig, libxml2, gnutls, libproxy, sqlite, curl, glib, GConf}:
|
||||
{stdenv, fetchurl, pkgconfig, libxml2, gnutls, libproxy, sqlite, curl,
|
||||
glib, GConf, gnome_keyring}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libsoup-2.28.0";
|
||||
|
@ -6,5 +7,6 @@ stdenv.mkDerivation {
|
|||
url = mirror://gnome/sources/libsoup/2.28/libsoup-2.28.0.tar.bz2;
|
||||
sha256 = "1dkgih5im81lqc0y2qv3xcjd8hvmd4fjjvh5a5akfq6mjp9ifwk4";
|
||||
};
|
||||
buildInputs = [ pkgconfig libxml2 gnutls libproxy sqlite curl glib GConf ];
|
||||
buildInputs = [ pkgconfig libxml2 gnutls libproxy sqlite curl
|
||||
glib GConf gnome_keyring ];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue