1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/development/libraries/libsoup/default.nix

52 lines
1.5 KiB
Nix
Raw Normal View History

2018-03-13 21:46:46 +00:00
{ stdenv, fetchurl, glib, libxml2, pkgconfig, gnome3
, gnomeSupport ? true, sqlite, glib-networking, gobjectIntrospection
, valaSupport ? true, vala_0_40
, intltool, python3 }:
2018-03-14 19:15:06 +00:00
2018-03-03 05:29:21 +00:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
2018-08-08 19:53:30 +01:00
pname = "libsoup";
version = "2.62.2";
src = fetchurl {
2018-03-03 05:29:21 +00:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
2018-06-06 10:55:48 +01:00
sha256 = "1dkrz1iwsswscayfmjxqv2q00b87snlq9nxdccn5vck0vbinylwy";
};
2018-08-08 19:53:30 +01:00
postPatch = ''
2014-01-21 15:33:10 +00:00
patchShebangs libsoup/
2018-08-08 19:53:30 +01:00
'' + stdenv.lib.optionalString valaSupport ''
substituteInPlace libsoup/Makefile.in --replace "\$(DESTDIR)\$(vapidir)" "\$(DESTDIR)\$(girdir)/../vala/vapi"
'';
2014-01-21 15:33:10 +00:00
outputs = [ "out" "dev" ];
2015-10-13 20:51:53 +01:00
2018-03-14 19:15:06 +00:00
buildInputs = [ python3 sqlite ];
2018-03-13 21:46:46 +00:00
nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection ]
++ stdenv.lib.optionals valaSupport [ vala_0_40 ];
propagatedBuildInputs = [ glib libxml2 ];
# glib-networking is a runtime dependency, not a compile-time dependency
2018-03-13 21:46:46 +00:00
configureFlags = [
"--disable-tls-check"
"--enable-vala=${if valaSupport then "yes" else "no"}"
"--with-gnome=${if gnomeSupport then "yes" else "no"}"
];
doCheck = false; # fails with "no: command not found"
2018-03-03 05:29:21 +00:00
passthru = {
propagatedUserEnvPackages = [ glib-networking.out ];
updateScript = gnome3.updateScript {
packageName = pname;
};
};
meta = {
2018-03-03 05:29:21 +00: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;
};
}