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

63 lines
2 KiB
Nix
Raw Normal View History

2018-03-03 06:29:21 +01:00
{ stdenv, fetchurl, fetchpatch, glib, libxml2, pkgconfig, gnome3
, gnomeSupport ? true, libgnome-keyring3, sqlite, glib-networking, gobjectIntrospection
2017-10-10 22:24:04 +02:00
, valaSupport ? true, vala_0_38
, libintlOrEmpty
, intltool, python }:
let
2018-03-03 06:29:21 +01:00
pname = "libsoup";
2018-03-13 02:03:18 +01:00
version = "2.62.0";
in
2018-03-03 06:29:21 +01:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
2018-03-03 06:29:21 +01:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
2018-03-13 02:03:18 +01:00
sha256 = "1b5aff1igbsx1h4v3wmkffvzgiy8rscibqka7fmjf2lxs7l7lz5b";
};
prePatch = ''
2014-01-21 16:33:10 +01:00
patchShebangs libsoup/
'' + stdenv.lib.optionalString valaSupport
''
substituteInPlace libsoup/Makefile.in --replace "\$(DESTDIR)\$(vapidir)" "\$(DESTDIR)\$(girdir)/../vala/vapi"
'';
2014-01-21 16:33:10 +01:00
patches = [
# remove for >= 2.60.3
(fetchpatch {
name = "buffer-overflow.patch"; # https://bugzilla.gnome.org/show_bug.cgi?id=788037
url = "https://git.gnome.org/browse/libsoup/patch/?id=b79689833ba";
sha256 = "1azbk540mbm4c6ip54ixbg9d6w7nkls9y81fzm3csq9a5786r3d3";
})
];
outputs = [ "out" "dev" ];
2015-10-13 21:51:53 +02:00
buildInputs = libintlOrEmpty ++ [ intltool python sqlite ]
2017-10-10 22:24:04 +02:00
++ stdenv.lib.optionals valaSupport [ vala_0_38 ];
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ glib libxml2 gobjectIntrospection ]
++ stdenv.lib.optionals gnomeSupport [ libgnome-keyring3 ];
# glib-networking is a runtime dependency, not a compile-time dependency
configureFlags = "--disable-tls-check"
+ " --enable-vala=${if valaSupport then "yes" else "no"}"
+ stdenv.lib.optionalString (!gnomeSupport) " --without-gnome";
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
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;
};
}