2013-02-25 22:35:26 +00:00
|
|
|
{ stdenv, fetchurl, glib, libxml2, pkgconfig
|
2012-03-09 07:13:08 +00:00
|
|
|
, gnomeSupport ? true, libgnome_keyring, sqlite, glib_networking }:
|
2009-09-30 05:27:34 +00:00
|
|
|
|
2012-03-09 07:13:08 +00:00
|
|
|
stdenv.mkDerivation {
|
2013-02-25 22:35:26 +00:00
|
|
|
name = "libsoup-2.38.1";
|
2012-03-08 10:14:37 +00:00
|
|
|
|
2009-09-30 05:27:34 +00:00
|
|
|
src = fetchurl {
|
2013-02-25 22:35:26 +00:00
|
|
|
url = mirror://gnome/sources/libsoup/2.38/libsoup-2.38.1.tar.xz;
|
|
|
|
sha256 = "16iza4y8pmc4sn90iid88fgminvgcqypy3s2qnmzkzm5qwzr5f3i";
|
2009-09-30 05:27:34 +00:00
|
|
|
};
|
2012-03-08 10:14:37 +00:00
|
|
|
|
|
|
|
|
2013-03-02 09:41:53 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-03-09 07:13:08 +00:00
|
|
|
propagatedBuildInputs = [ glib libxml2 ]
|
|
|
|
++ stdenv.lib.optionals gnomeSupport [ libgnome_keyring sqlite ];
|
|
|
|
passthru.propagatedUserEnvPackages = [ glib_networking ];
|
|
|
|
|
|
|
|
# glib_networking is a runtime dependency, not a compile-time dependency
|
2012-03-08 10:14:37 +00:00
|
|
|
configureFlags = "--disable-tls-check";
|
2012-03-09 07:13:08 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
inherit (glib.meta) maintainers platforms;
|
|
|
|
};
|
2009-09-30 05:27:34 +00:00
|
|
|
}
|