2013-02-25 22:35:26 +00:00
|
|
|
{ stdenv, fetchurl, glib, libxml2, pkgconfig
|
2014-02-01 09:12:36 +00:00
|
|
|
, gnomeSupport ? true, libgnome_keyring, sqlite, glib_networking, gobjectIntrospection
|
2014-01-11 12:28:12 +00:00
|
|
|
, libintlOrEmpty
|
|
|
|
, intltool, python }:
|
2014-02-01 09:12:36 +00:00
|
|
|
let
|
2014-11-14 13:51:40 +00:00
|
|
|
majorVersion = "2.48";
|
|
|
|
version = "${majorVersion}.0";
|
2014-02-01 09:12:36 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libsoup-${version}";
|
2012-03-08 10:14:37 +00:00
|
|
|
|
2009-09-30 05:27:34 +00:00
|
|
|
src = fetchurl {
|
2014-01-14 20:33:11 +00:00
|
|
|
url = "mirror://gnome/sources/libsoup/${majorVersion}/libsoup-${version}.tar.xz";
|
2014-11-14 13:51:40 +00:00
|
|
|
sha256 = "ea34dd64fe44343445daf6dd690d0691e9d973468de44878da97371c16d89784";
|
2009-09-30 05:27:34 +00:00
|
|
|
};
|
2012-03-08 10:14:37 +00:00
|
|
|
|
2014-01-21 15:33:10 +00:00
|
|
|
patchPhase = ''
|
|
|
|
patchShebangs libsoup/
|
2015-03-04 04:14:31 +00:00
|
|
|
patch -p1 < ${./bad-symbol.patch}
|
2014-02-01 09:12:36 +00:00
|
|
|
'';
|
2014-01-21 15:33:10 +00:00
|
|
|
|
2015-01-06 14:37:41 +00:00
|
|
|
buildInputs = libintlOrEmpty ++ [ intltool python sqlite ];
|
2013-03-02 09:41:53 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-02-01 09:12:36 +00:00
|
|
|
propagatedBuildInputs = [ glib libxml2 gobjectIntrospection ]
|
2015-01-06 14:37:41 +00:00
|
|
|
++ stdenv.lib.optionals gnomeSupport [ libgnome_keyring ];
|
2012-03-09 07:13:08 +00:00
|
|
|
passthru.propagatedUserEnvPackages = [ glib_networking ];
|
|
|
|
|
|
|
|
# glib_networking is a runtime dependency, not a compile-time dependency
|
2015-01-06 14:37:41 +00:00
|
|
|
configureFlags = "--disable-tls-check" + stdenv.lib.optionalString (!gnomeSupport) " --without-gnome";
|
2012-03-09 07:13:08 +00:00
|
|
|
|
2013-07-04 05:02:52 +00:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
|
|
|
|
2012-03-09 07:13:08 +00:00
|
|
|
meta = {
|
|
|
|
inherit (glib.meta) maintainers platforms;
|
|
|
|
};
|
2009-09-30 05:27:34 +00:00
|
|
|
}
|