2021-05-17 22:25:41 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchurl
|
|
|
|
, glib
|
|
|
|
, libxml2
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
|
|
|
, gnome
|
|
|
|
, libsysprof-capture
|
|
|
|
, gnomeSupport ? true
|
|
|
|
, sqlite
|
|
|
|
, glib-networking
|
|
|
|
, gobject-introspection
|
|
|
|
, withIntrospection ? stdenv.buildPlatform == stdenv.hostPlatform
|
|
|
|
, vala
|
|
|
|
, withVala ? stdenv.buildPlatform == stdenv.hostPlatform
|
|
|
|
, libpsl
|
|
|
|
, python3
|
|
|
|
, brotli
|
2020-10-25 12:47:08 +00:00
|
|
|
}:
|
2018-03-14 19:15:06 +00:00
|
|
|
|
2018-03-03 05:29:21 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-08-08 19:53:30 +01:00
|
|
|
pname = "libsoup";
|
2021-12-06 06:10:34 +00:00
|
|
|
version = "2.74.2";
|
2012-03-08 10:14:37 +00:00
|
|
|
|
2021-09-29 15:00:31 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2009-09-30 06:27:34 +01:00
|
|
|
src = fetchurl {
|
2021-01-21 17:00:13 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-12-06 06:10:34 +00:00
|
|
|
sha256 = "sha256-8KQnZW5f4Z4d9xwQfojfobLmc8JcVHt4I7YBi0DQEVk=";
|
2009-09-30 06:27:34 +01:00
|
|
|
};
|
2012-03-08 10:14:37 +00:00
|
|
|
|
2021-09-29 15:00:31 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
glib
|
|
|
|
] ++ lib.optionals withIntrospection [
|
|
|
|
gobject-introspection
|
|
|
|
] ++ lib.optionals withVala [
|
|
|
|
vala
|
|
|
|
];
|
2015-10-13 20:51:53 +01:00
|
|
|
|
2020-09-20 18:56:43 +01:00
|
|
|
buildInputs = [
|
|
|
|
python3
|
|
|
|
sqlite
|
|
|
|
libpsl
|
2020-11-06 04:46:41 +00:00
|
|
|
glib.out
|
2020-09-20 18:56:43 +01:00
|
|
|
brotli
|
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
2020-10-24 05:49:57 +01:00
|
|
|
libsysprof-capture
|
2020-09-20 18:56:43 +01:00
|
|
|
];
|
2012-03-09 07:13:08 +00:00
|
|
|
|
2021-09-29 15:00:31 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
glib
|
|
|
|
libxml2
|
|
|
|
];
|
2020-11-06 04:46:41 +00:00
|
|
|
|
2018-09-05 01:51:03 +01:00
|
|
|
mesonFlags = [
|
|
|
|
"-Dtls_check=false" # glib-networking is a runtime dependency, not a compile-time dependency
|
2019-09-09 20:48:04 +01:00
|
|
|
"-Dgssapi=disabled"
|
2021-05-17 22:25:41 +01:00
|
|
|
"-Dvapi=${if withVala then "enabled" else "disabled"}"
|
|
|
|
"-Dintrospection=${if withIntrospection then "enabled" else "disabled"}"
|
2020-10-14 00:46:17 +01:00
|
|
|
"-Dgnome=${lib.boolToString gnomeSupport}"
|
2019-09-09 20:48:04 +01:00
|
|
|
"-Dntlm=disabled"
|
2020-09-20 18:56:43 +01:00
|
|
|
] ++ lib.optionals (!stdenv.isLinux) [
|
|
|
|
"-Dsysprof=disabled"
|
2018-03-13 21:46:46 +00:00
|
|
|
];
|
2012-03-09 07:13:08 +00:00
|
|
|
|
2021-09-25 17:10:42 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-lpthread";
|
|
|
|
|
2018-09-05 01:51:03 +01:00
|
|
|
doCheck = false; # ERROR:../tests/socket-test.c:37:do_unconnected_socket_test: assertion failed (res == SOUP_STATUS_OK): (2 == 200)
|
2018-04-25 04:20:18 +01:00
|
|
|
|
2021-09-25 17:10:42 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs libsoup/
|
|
|
|
'';
|
|
|
|
|
2018-03-03 05:29:21 +00:00
|
|
|
passthru = {
|
2021-09-25 17:10:42 +01:00
|
|
|
propagatedUserEnvPackages = [
|
|
|
|
glib-networking.out
|
|
|
|
];
|
2021-05-07 22:18:14 +01:00
|
|
|
updateScript = gnome.updateScript {
|
2018-03-03 05:29:21 +00:00
|
|
|
packageName = pname;
|
2021-03-20 23:57:24 +00:00
|
|
|
versionPolicy = "odd-unstable";
|
2021-10-14 21:44:54 +01:00
|
|
|
freeze = true;
|
2018-03-03 05:29:21 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2012-03-09 07:13:08 +00:00
|
|
|
meta = {
|
2018-03-03 05:29:21 +00:00
|
|
|
description = "HTTP client/server library for GNOME";
|
2020-02-28 23:49:19 +00:00
|
|
|
homepage = "https://wiki.gnome.org/Projects/libsoup";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.lgpl2Plus;
|
2012-03-09 07:13:08 +00:00
|
|
|
inherit (glib.meta) maintainers platforms;
|
|
|
|
};
|
2009-09-30 06:27:34 +01:00
|
|
|
}
|