2013-02-25 14:35:26 -08:00
|
|
|
{ stdenv, fetchurl, glib, libxml2, pkgconfig
|
2015-07-26 03:56:34 -07:00
|
|
|
, gnomeSupport ? false, libgnome_keyring, sqlite, glib_networking, gobjectIntrospection
|
2014-01-11 04:28:12 -08:00
|
|
|
, libintlOrEmpty
|
|
|
|
, intltool, python }:
|
2014-02-01 01:12:36 -08:00
|
|
|
let
|
2015-07-27 17:45:22 -07:00
|
|
|
majorVersion = "2.50";
|
2014-11-14 05:51:40 -08:00
|
|
|
version = "${majorVersion}.0";
|
2014-02-01 01:12:36 -08:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libsoup-${version}";
|
2012-03-08 02:14:37 -08:00
|
|
|
|
2009-09-29 22:27:34 -07:00
|
|
|
src = fetchurl {
|
2014-01-14 12:33:11 -08:00
|
|
|
url = "mirror://gnome/sources/libsoup/${majorVersion}/libsoup-${version}.tar.xz";
|
2015-07-27 17:45:22 -07:00
|
|
|
sha256 = "1e01365ac4af3817187ea847f9d3588c27eee01fc519a5a7cb212bb78b0f667b";
|
2009-09-29 22:27:34 -07:00
|
|
|
};
|
2012-03-08 02:14:37 -08:00
|
|
|
|
2014-01-21 07:33:10 -08:00
|
|
|
patchPhase = ''
|
|
|
|
patchShebangs libsoup/
|
2014-02-01 01:12:36 -08:00
|
|
|
'';
|
2014-01-21 07:33:10 -08:00
|
|
|
|
2015-01-06 06:37:41 -08:00
|
|
|
buildInputs = libintlOrEmpty ++ [ intltool python sqlite ];
|
2013-03-02 01:41:53 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-02-01 01:12:36 -08:00
|
|
|
propagatedBuildInputs = [ glib libxml2 gobjectIntrospection ]
|
2015-01-06 06:37:41 -08:00
|
|
|
++ stdenv.lib.optionals gnomeSupport [ libgnome_keyring ];
|
2012-03-08 23:13:08 -08:00
|
|
|
passthru.propagatedUserEnvPackages = [ glib_networking ];
|
|
|
|
|
|
|
|
# glib_networking is a runtime dependency, not a compile-time dependency
|
2015-01-06 06:37:41 -08:00
|
|
|
configureFlags = "--disable-tls-check" + stdenv.lib.optionalString (!gnomeSupport) " --without-gnome";
|
2012-03-08 23:13:08 -08:00
|
|
|
|
2013-07-03 22:02:52 -07:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
|
|
|
|
2015-07-26 04:05:49 -07:00
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
2012-03-08 23:13:08 -08:00
|
|
|
meta = {
|
|
|
|
inherit (glib.meta) maintainers platforms;
|
|
|
|
};
|
2009-09-29 22:27:34 -07:00
|
|
|
}
|