nixpkgs/pkgs/development/libraries/libsoup/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

97 lines
2.0 KiB
Nix
Raw Normal View History

{ 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";
outputs = [ "out" "dev" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-12-06 06:10:34 +00:00
sha256 = "sha256-8KQnZW5f4Z4d9xwQfojfobLmc8JcVHt4I7YBi0DQEVk=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
glib
] ++ lib.optionals withIntrospection [
gobject-introspection
] ++ lib.optionals withVala [
vala
];
2015-10-13 20:51:53 +01:00
buildInputs = [
python3
sqlite
libpsl
2020-11-06 04:46:41 +00:00
glib.out
brotli
] ++ lib.optionals stdenv.isLinux [
libsysprof-capture
];
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"
"-Dvapi=${if withVala then "enabled" else "disabled"}"
"-Dintrospection=${if withIntrospection then "enabled" else "disabled"}"
"-Dgnome=${lib.boolToString gnomeSupport}"
2019-09-09 20:48:04 +01:00
"-Dntlm=disabled"
] ++ lib.optionals (!stdenv.isLinux) [
"-Dsysprof=disabled"
2018-03-13 21:46:46 +00: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)
postPatch = ''
patchShebangs libsoup/
'';
2018-03-03 05:29:21 +00:00
passthru = {
propagatedUserEnvPackages = [
glib-networking.out
];
updateScript = gnome.updateScript {
2018-03-03 05:29:21 +00:00
packageName = pname;
versionPolicy = "odd-unstable";
freeze = true;
2018-03-03 05:29:21 +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";
license = lib.licenses.lgpl2Plus;
inherit (glib.meta) maintainers platforms;
};
}