2017-12-01 07:27:31 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, glib, libxml2, pkgconfig
|
2018-02-25 02:23:58 +00:00
|
|
|
, gnomeSupport ? true, libgnome-keyring3, sqlite, glib-networking, gobjectIntrospection
|
2017-10-10 21:24:04 +01:00
|
|
|
, valaSupport ? true, vala_0_38
|
2014-01-11 12:28:12 +00:00
|
|
|
, libintlOrEmpty
|
|
|
|
, intltool, python }:
|
2014-02-01 09:12:36 +00:00
|
|
|
let
|
2017-09-17 14:10:48 +01:00
|
|
|
majorVersion = "2.60";
|
2017-12-01 07:27:31 +00:00
|
|
|
version = "${majorVersion}.2";
|
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 06:27:34 +01:00
|
|
|
src = fetchurl {
|
2014-01-14 20:33:11 +00:00
|
|
|
url = "mirror://gnome/sources/libsoup/${majorVersion}/libsoup-${version}.tar.xz";
|
2017-12-01 07:27:31 +00:00
|
|
|
sha256 = "7263cfe18872e2e652c196f5667e514616d9c97c861dfca82a65a55f45f0da01";
|
2009-09-30 06:27:34 +01:00
|
|
|
};
|
2012-03-08 10:14:37 +00:00
|
|
|
|
2016-07-25 20:43:51 +01:00
|
|
|
prePatch = ''
|
2014-01-21 15:33:10 +00:00
|
|
|
patchShebangs libsoup/
|
2016-07-25 20:43:51 +01:00
|
|
|
'' + stdenv.lib.optionalString valaSupport
|
|
|
|
''
|
|
|
|
substituteInPlace libsoup/Makefile.in --replace "\$(DESTDIR)\$(vapidir)" "\$(DESTDIR)\$(girdir)/../vala/vapi"
|
2014-02-01 09:12:36 +00:00
|
|
|
'';
|
2014-01-21 15:33:10 +00:00
|
|
|
|
2017-12-01 07:27:31 +00:00
|
|
|
patches = [
|
|
|
|
# remove for >= 2.60.3
|
|
|
|
(fetchpatch {
|
|
|
|
name = "buffer-overflow.patch"; # https://bugzilla.gnome.org/show_bug.cgi?id=788037
|
|
|
|
url = "https://git.gnome.org/browse/libsoup/patch/?id=b79689833ba";
|
|
|
|
sha256 = "1azbk540mbm4c6ip54ixbg9d6w7nkls9y81fzm3csq9a5786r3d3";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-13 20:51:53 +01:00
|
|
|
|
2016-07-25 20:43:51 +01:00
|
|
|
buildInputs = libintlOrEmpty ++ [ intltool python sqlite ]
|
2017-10-10 21:24:04 +01:00
|
|
|
++ stdenv.lib.optionals valaSupport [ vala_0_38 ];
|
2013-03-02 09:41:53 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-02-01 09:12:36 +00:00
|
|
|
propagatedBuildInputs = [ glib libxml2 gobjectIntrospection ]
|
2018-02-25 02:23:58 +00:00
|
|
|
++ stdenv.lib.optionals gnomeSupport [ libgnome-keyring3 ];
|
|
|
|
passthru.propagatedUserEnvPackages = [ glib-networking.out ];
|
2012-03-09 07:13:08 +00:00
|
|
|
|
2018-02-25 02:23:58 +00:00
|
|
|
# glib-networking is a runtime dependency, not a compile-time dependency
|
2016-07-25 20:43:51 +01:00
|
|
|
configureFlags = "--disable-tls-check"
|
2016-08-22 00:26:00 +01:00
|
|
|
+ " --enable-vala=${if valaSupport then "yes" else "no"}"
|
2016-07-25 20:43:51 +01:00
|
|
|
+ stdenv.lib.optionalString (!gnomeSupport) " --without-gnome";
|
2012-03-09 07:13:08 +00:00
|
|
|
|
2013-07-04 06:02:52 +01: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 06:27:34 +01:00
|
|
|
}
|