2013-02-25 23:35:26 +01:00
|
|
|
{ stdenv, fetchurl, glib, libxml2, pkgconfig
|
2016-07-25 21:43:51 +02:00
|
|
|
, gnomeSupport ? true, libgnome_keyring, sqlite, glib_networking, gobjectIntrospection
|
2016-08-22 01:26:00 +02:00
|
|
|
, valaSupport ? true, vala_0_32
|
2014-01-11 13:28:12 +01:00
|
|
|
, libintlOrEmpty
|
|
|
|
, intltool, python }:
|
2014-02-01 10:12:36 +01:00
|
|
|
let
|
2016-09-22 15:59:57 +02:00
|
|
|
majorVersion = "2.56";
|
|
|
|
version = "${majorVersion}.0";
|
2014-02-01 10:12:36 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libsoup-${version}";
|
2012-03-08 11:14:37 +01:00
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2014-01-14 21:33:11 +01:00
|
|
|
url = "mirror://gnome/sources/libsoup/${majorVersion}/libsoup-${version}.tar.xz";
|
2016-09-22 15:59:57 +02:00
|
|
|
sha256 = "d8216b71de8247bc6f274ec054c08547b2e04369c1f8add713e9350c8ef81fe5";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2012-03-08 11:14:37 +01:00
|
|
|
|
2016-07-25 21:43:51 +02:00
|
|
|
prePatch = ''
|
2014-01-21 16:33:10 +01:00
|
|
|
patchShebangs libsoup/
|
2016-07-25 21:43:51 +02:00
|
|
|
'' + stdenv.lib.optionalString valaSupport
|
|
|
|
''
|
|
|
|
substituteInPlace libsoup/Makefile.in --replace "\$(DESTDIR)\$(vapidir)" "\$(DESTDIR)\$(girdir)/../vala/vapi"
|
2014-02-01 10:12:36 +01:00
|
|
|
'';
|
2014-01-21 16:33:10 +01:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-13 21:51:53 +02:00
|
|
|
|
2016-07-25 21:43:51 +02:00
|
|
|
buildInputs = libintlOrEmpty ++ [ intltool python sqlite ]
|
2016-08-22 01:26:00 +02:00
|
|
|
++ stdenv.lib.optionals valaSupport [ vala_0_32 ];
|
2013-03-02 10:41:53 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-02-01 10:12:36 +01:00
|
|
|
propagatedBuildInputs = [ glib libxml2 gobjectIntrospection ]
|
2015-01-06 15:37:41 +01:00
|
|
|
++ stdenv.lib.optionals gnomeSupport [ libgnome_keyring ];
|
2015-10-11 16:06:34 +02:00
|
|
|
passthru.propagatedUserEnvPackages = [ glib_networking.out ];
|
2012-03-09 08:13:08 +01:00
|
|
|
|
|
|
|
# glib_networking is a runtime dependency, not a compile-time dependency
|
2016-07-25 21:43:51 +02:00
|
|
|
configureFlags = "--disable-tls-check"
|
2016-08-22 01:26:00 +02:00
|
|
|
+ " --enable-vala=${if valaSupport then "yes" else "no"}"
|
2016-07-25 21:43:51 +02:00
|
|
|
+ stdenv.lib.optionalString (!gnomeSupport) " --without-gnome";
|
2012-03-09 08:13:08 +01:00
|
|
|
|
2013-07-04 07:02:52 +02:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
|
|
|
|
2015-07-26 13:05:49 +02:00
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
2012-03-09 08:13:08 +01:00
|
|
|
meta = {
|
|
|
|
inherit (glib.meta) maintainers platforms;
|
|
|
|
};
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|