2024-05-13 21:24:10 +00:00
|
|
|
{ stdenv, lib, fetchurl, glib, libxml2, meson, ninja, pkg-config, gnome
|
|
|
|
, libsysprof-capture, gobject-introspection, vala, libpsl, brotli
|
|
|
|
, gnomeSupport ? true, sqlite, buildPackages, withIntrospection ?
|
|
|
|
lib.meta.availableOn stdenv.hostPlatform gobject-introspection
|
|
|
|
&& stdenv.hostPlatform.emulatorAvailable buildPackages }:
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libsoup";
|
|
|
|
version = "2.74.3";
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
2024-05-13 21:24:10 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${
|
|
|
|
lib.versions.majorMinor version
|
|
|
|
}/${pname}-${version}.tar.xz";
|
2024-05-02 00:46:19 +00:00
|
|
|
sha256 = "sha256-5Ld8Qc/EyMWgNfzcMgx7xs+3XvfFoDQVPfFBP6HZLxM=";
|
|
|
|
};
|
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
depsBuildBuild = [ pkg-config ];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config glib ]
|
|
|
|
++ lib.optionals withIntrospection [ gobject-introspection vala ];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
buildInputs = [ sqlite libpsl glib.out brotli ]
|
|
|
|
++ lib.optionals stdenv.isLinux [ libsysprof-capture ];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
propagatedBuildInputs = [ glib libxml2 ];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Dtls_check=false" # glib-networking is a runtime dependency, not a compile-time dependency
|
|
|
|
"-Dgssapi=disabled"
|
|
|
|
"-Dvapi=${if withIntrospection then "enabled" else "disabled"}"
|
|
|
|
"-Dintrospection=${if withIntrospection then "enabled" else "disabled"}"
|
|
|
|
"-Dgnome=${lib.boolToString gnomeSupport}"
|
|
|
|
"-Dntlm=disabled"
|
2024-05-13 21:24:10 +00:00
|
|
|
] ++ lib.optionals (!stdenv.isLinux) [ "-Dsysprof=disabled" ];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-lpthread";
|
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
doCheck =
|
|
|
|
false; # ERROR:../tests/socket-test.c:37:do_unconnected_socket_test: assertion failed (res == SOUP_STATUS_OK): (2 == 200)
|
2024-05-02 00:46:19 +00:00
|
|
|
separateDebugInfo = true;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# fixes finding vapigen when cross-compiling
|
|
|
|
# the commit is in 3.0.6
|
|
|
|
# https://gitlab.gnome.org/GNOME/libsoup/-/commit/5280e936d0a76f94dbc5d8489cfbdc0a06343f65
|
|
|
|
substituteInPlace meson.build \
|
|
|
|
--replace "required: vapi_opt)" "required: vapi_opt, native: false)"
|
|
|
|
|
|
|
|
patchShebangs libsoup/
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
versionPolicy = "odd-unstable";
|
|
|
|
freeze = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "HTTP client/server library for GNOME";
|
|
|
|
homepage = "https://gitlab.gnome.org/GNOME/libsoup";
|
|
|
|
license = lib.licenses.lgpl2Plus;
|
|
|
|
inherit (glib.meta) maintainers platforms;
|
2024-05-13 21:24:10 +00:00
|
|
|
pkgConfigModules = [ "libsoup-2.4" "libsoup-gnome-2.4" ];
|
2024-05-02 00:46:19 +00:00
|
|
|
};
|
|
|
|
}
|