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

133 lines
2.5 KiB
Nix
Raw Normal View History

{ fetchurl
, lib, stdenv
, pkg-config
, fetchpatch
, meson
, ninja
, glib
, gnome3
, nspr
, gettext
, gobject-introspection
, vala
, sqlite
, libxml2
, dbus-glib
, libsoup
, nss
, dbus
, libgee
, evolution-data-server
, libsecret
, db
, python3
, readline
, gtk3
2020-03-03 12:41:12 +00:00
, gtk-doc
, docbook-xsl-nons
, docbook_xml_dtd_43
, telepathy-glib
, telepathySupport ? false
}:
# TODO: enable more folks backends
2018-12-25 22:05:45 +00:00
stdenv.mkDerivation rec {
pname = "folks";
2020-03-11 16:17:59 +00:00
version = "0.14.0";
2020-03-03 12:41:12 +00:00
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-03-11 16:17:59 +00:00
sha256 = "1f9b52vmwnq7s51vj26w2618dn2ph5g12ibbkbyk6fvxcgd7iryn";
};
patches = [
# Fix tests with e-d-s linked with libphonenumber support
# https://gitlab.gnome.org/GNOME/folks/merge_requests/40
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/folks/commit/6d443480a137f6a6ff345b21bf3cb31066eefbcd.patch";
sha256 = "D/Y2g12TT0qrcH+iJ2umu4Hmp0EJ3Hoedh0H3aWI+HY=";
})
];
mesonFlags = [
2020-03-03 12:41:12 +00:00
"-Ddocs=true"
"-Dtelepathy_backend=${lib.boolToString telepathySupport}"
];
2019-03-07 14:53:53 +00:00
nativeBuildInputs = [
gettext
gobject-introspection
gtk3
2020-03-03 12:41:12 +00:00
gtk-doc
docbook-xsl-nons
docbook_xml_dtd_43
meson
ninja
pkg-config
python3
vala
2018-09-12 13:27:01 +01:00
];
2019-03-07 14:53:53 +00:00
buildInputs = [
db
dbus-glib
evolution-data-server
libsecret
libsoup
libxml2
nspr
nss
readline
] ++ lib.optional telepathySupport telepathy-glib;
2019-03-07 14:53:53 +00:00
propagatedBuildInputs = [
glib
libgee
sqlite
];
checkInputs = [
dbus
(python3.withPackages (pp: with pp; [
python-dbusmock
# The following possibly need to be propagated by dbusmock
# if they are not optional
dbus-python
pygobject3
]))
];
doCheck = true;
# Prevents e-d-s add-contacts-stress-test from timing out
checkPhase = ''
runHook preCheck
meson test --timeout-multiplier 4
runHook postCheck
'';
postPatch = ''
chmod +x meson_post_install.py
patchShebangs meson_post_install.py
patchShebangs tests/tools/manager-file.py
'';
2017-12-26 20:07:59 +00:00
passthru = {
updateScript = gnome3.updateScript {
2018-12-25 22:05:45 +00:00
packageName = pname;
2017-12-26 20:07:59 +00:00
versionPolicy = "none";
};
};
meta = with lib; {
2018-12-25 22:05:45 +00:00
description = "A library that aggregates people from multiple sources to create metacontacts";
homepage = "https://wiki.gnome.org/Projects/Folks";
license = licenses.lgpl2Plus;
maintainers = teams.gnome.members;
platforms = platforms.gnu ++ platforms.linux; # arbitrary choice
};
}