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

48 lines
1.4 KiB
Nix
Raw Normal View History

2018-09-05 02:51:03 +02:00
{ stdenv, fetchurl, glib, libxml2, meson, ninja, pkgconfig, gnome3
, gnomeSupport ? true, sqlite, glib-networking, gobject-introspection, vala
2018-09-05 02:51:03 +02:00
, libpsl, python3 }:
2018-03-14 20:15:06 +01:00
2018-03-03 06:29:21 +01:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
2018-08-08 20:53:30 +02:00
pname = "libsoup";
version = "2.66.1";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "1zs3bhspwg7fggxd7x1rrggpkcf2j9ch6dhncq9syh252z0vcb2a";
};
2018-08-08 20:53:30 +02:00
postPatch = ''
2014-01-21 16:33:10 +01:00
patchShebangs libsoup/
'';
2014-01-21 16:33:10 +01:00
outputs = [ "out" "dev" ];
2015-10-13 21:51:53 +02:00
2018-09-05 02:51:03 +02:00
buildInputs = [ python3 sqlite libpsl ];
nativeBuildInputs = [ meson ninja pkgconfig gobject-introspection vala ];
2018-03-13 22:46:46 +01:00
propagatedBuildInputs = [ glib libxml2 ];
2018-09-05 02:51:03 +02:00
mesonFlags = [
"-Dtls_check=false" # glib-networking is a runtime dependency, not a compile-time dependency
"-Dgssapi=false"
"-Dvapi=true"
"-Dgnome=${if gnomeSupport then "true" else "false"}"
2018-03-13 22:46:46 +01:00
];
2018-09-05 02:51:03 +02:00
doCheck = false; # ERROR:../tests/socket-test.c:37:do_unconnected_socket_test: assertion failed (res == SOUP_STATUS_OK): (2 == 200)
2018-03-03 06:29:21 +01:00
passthru = {
propagatedUserEnvPackages = [ glib-networking.out ];
updateScript = gnome3.updateScript {
packageName = pname;
};
};
meta = {
2018-03-03 06:29:21 +01:00
description = "HTTP client/server library for GNOME";
homepage = https://wiki.gnome.org/Projects/libsoup;
license = stdenv.lib.licenses.gpl2;
inherit (glib.meta) maintainers platforms;
};
}