2012-03-08 16:37:19 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, libproxy, sqlite, curl
|
|
|
|
, glib, GConf, libgnome_keyring }:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
2011-07-05 17:14:44 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-03-08 11:14:37 +01:00
|
|
|
name = "libsoup-2.34.3";
|
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2012-03-08 11:14:37 +01:00
|
|
|
url = mirror://gnome/sources/libsoup/2.34/libsoup-2.34.3.tar.xz;
|
|
|
|
sha256 = "072af1iqcky5vm6akm450qhdjrgav4yyl6s8idhnq0gpm5jqhgy4";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2012-03-08 11:14:37 +01:00
|
|
|
|
2009-09-30 13:32:28 +02:00
|
|
|
buildInputs = [ pkgconfig libxml2 gnutls libproxy sqlite curl
|
2012-03-08 16:37:19 +01:00
|
|
|
glib GConf libgnome_keyring ];
|
2012-03-08 11:14:37 +01:00
|
|
|
|
|
|
|
configureFlags = "--disable-tls-check";
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|