Add libsoup 2.31 - may work better with GnuTLS update

svn path=/nixpkgs/trunk/; revision=22523
This commit is contained in:
Michael Raskin 2010-07-08 09:02:10 +00:00
parent 6be9a7692a
commit b3378524fa
2 changed files with 18 additions and 0 deletions

View file

@ -182,6 +182,12 @@ rec {
inherit GConf gnome_keyring;
};
libsoup_2_31 = import ./desktop/libsoup/2.31.nix {
inherit (pkgs) stdenv fetchurl pkgconfig libxml2 gnutls libproxy sqlite curl;
inherit (pkgs.gtkLibs) glib;
inherit GConf gnome_keyring;
};
libwnck = import ./desktop/libwnck {
inherit (pkgs) stdenv fetchurl pkgconfig;
inherit (pkgs.xlibs) libX11;

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, pkgconfig, libxml2, gnutls, libproxy, sqlite, curl,
glib, GConf, gnome_keyring}:
stdenv.mkDerivation {
name = "libsoup-2.31.2";
src = fetchurl {
url = mirror://gnome/sources/libsoup/2.31/libsoup-2.31.2.tar.bz2;
sha256 = "ae52e970deb0ca5e890d87cf55e555249c086bd56ae1fff69599174ca0075379";
};
buildInputs = [ pkgconfig libxml2 gnutls libproxy sqlite curl
glib GConf gnome_keyring ];
}