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