2013-02-25 23:35:26 +01:00
|
|
|
{ stdenv, fetchurl, glib, libxml2, pkgconfig
|
2014-02-01 10:12:36 +01:00
|
|
|
, gnomeSupport ? true, libgnome_keyring, sqlite, glib_networking, gobjectIntrospection
|
2014-01-11 13:28:12 +01:00
|
|
|
, libintlOrEmpty
|
|
|
|
, intltool, python }:
|
2014-02-01 10:12:36 +01:00
|
|
|
let
|
2014-01-14 21:33:11 +01:00
|
|
|
majorVersion = "2.45";
|
|
|
|
version = "${majorVersion}.3";
|
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";
|
2014-01-11 13:28:12 +01:00
|
|
|
sha256 = "04ma47hcrrbjp90r8jjn686cngnbgac24wgarpwwzlpg66wighva";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2012-03-08 11:14:37 +01:00
|
|
|
|
2014-01-21 16:33:10 +01:00
|
|
|
patchPhase = ''
|
|
|
|
patchShebangs libsoup/
|
2014-02-01 10:12:36 +01:00
|
|
|
'';
|
2014-01-21 16:33:10 +01:00
|
|
|
|
2014-01-11 13:28:12 +01:00
|
|
|
buildInputs = libintlOrEmpty ++ [ intltool python ];
|
2013-03-02 10:41:53 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-02-01 10:12:36 +01:00
|
|
|
propagatedBuildInputs = [ glib libxml2 gobjectIntrospection ]
|
2012-03-09 08:13:08 +01:00
|
|
|
++ 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 11:14:37 +01:00
|
|
|
configureFlags = "--disable-tls-check";
|
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";
|
|
|
|
|
2012-03-09 08:13:08 +01:00
|
|
|
meta = {
|
|
|
|
inherit (glib.meta) maintainers platforms;
|
|
|
|
};
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|