2019-07-04 13:02:10 +01:00
|
|
|
|
{ stdenv, gettext, fetchurl, evolution-data-server, fetchpatch
|
2018-09-03 21:20:43 +01:00
|
|
|
|
, pkgconfig, libxslt, docbook_xsl, docbook_xml_dtd_42, python3, gtk3, glib, cheese
|
2018-03-05 01:49:34 +00:00
|
|
|
|
, libchamplain, clutter-gtk, geocode-glib, gnome-desktop, gnome-online-accounts
|
2020-02-09 00:35:31 +00:00
|
|
|
|
, wrapGAppsHook, folks, libxml2, gnome3
|
|
|
|
|
, vala, meson, ninja, libhandy, gsettings-desktop-schemas
|
|
|
|
|
}:
|
2018-03-05 01:49:34 +00:00
|
|
|
|
|
2020-02-09 00:35:31 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
|
pname = "gnome-contacts";
|
2020-08-21 17:21:47 +01:00
|
|
|
|
version = "3.38";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-13 22:52:01 +01:00
|
|
|
|
url = "mirror://gnome/sources/gnome-contacts/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-08-21 17:21:47 +01:00
|
|
|
|
sha256 = "f8LuaJwfOcLmN163YLlOFlHOSoKK1AggbToD4TPaGa8=";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-03-05 01:49:34 +00:00
|
|
|
|
propagatedUserEnvPkgs = [ evolution-data-server ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
2018-03-05 01:49:34 +00:00
|
|
|
|
nativeBuildInputs = [
|
2018-09-03 21:20:43 +01:00
|
|
|
|
meson ninja pkgconfig vala gettext libxslt docbook_xsl docbook_xml_dtd_42 python3 wrapGAppsHook
|
2018-03-05 01:49:34 +00:00
|
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
2018-03-05 01:49:34 +00:00
|
|
|
|
buildInputs = [
|
2019-04-17 01:38:26 +01:00
|
|
|
|
gtk3 glib evolution-data-server gsettings-desktop-schemas
|
2020-02-09 00:35:31 +00:00
|
|
|
|
folks gnome-desktop libhandy
|
2018-03-05 01:49:34 +00:00
|
|
|
|
libxml2 gnome-online-accounts cheese
|
2019-02-13 21:47:50 +00:00
|
|
|
|
gnome3.adwaita-icon-theme libchamplain clutter-gtk geocode-glib
|
2018-03-05 01:49:34 +00:00
|
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
2019-03-03 18:22:49 +00:00
|
|
|
|
mesonFlags = [
|
2020-02-09 00:35:31 +00:00
|
|
|
|
# Upstream does not seem to maintain this properly: https://gitlab.gnome.org/GNOME/gnome-contacts/issues/103
|
|
|
|
|
"-Dtelepathy=false"
|
2019-07-04 13:02:10 +01:00
|
|
|
|
];
|
|
|
|
|
|
2018-03-05 01:49:34 +00:00
|
|
|
|
postPatch = ''
|
2019-03-03 18:22:49 +00:00
|
|
|
|
chmod +x build-aux/meson_post_install.py
|
|
|
|
|
patchShebangs build-aux/meson_post_install.py
|
2016-09-18 20:35:23 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2018-03-15 17:50:03 +00:00
|
|
|
|
# In file included from src/gnome-contacts@exe/contacts-avatar-selector.c:30:0:
|
|
|
|
|
# /nix/store/*-cheese-3.28.0/include/cheese/cheese-widget.h:26:10: fatal error: clutter-gtk/clutter-gtk.h: No such file or directory
|
|
|
|
|
# #include <clutter-gtk/clutter-gtk.h>
|
|
|
|
|
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2018-10-10 21:46:29 +01:00
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${stdenv.lib.getDev clutter-gtk}/include/clutter-gtk-1.0";
|
2018-03-15 17:50:03 +00:00
|
|
|
|
|
2018-03-05 01:49:34 +00:00
|
|
|
|
doCheck = true;
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
2018-03-05 01:49:34 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
|
packageName = "gnome-contacts";
|
|
|
|
|
attrPath = "gnome3.gnome-contacts";
|
|
|
|
|
};
|
|
|
|
|
};
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://wiki.gnome.org/Apps/Contacts";
|
2018-03-05 01:49:34 +00:00
|
|
|
|
description = "GNOME’s integrated address book";
|
2020-04-01 13:40:51 +01:00
|
|
|
|
maintainers = teams.gnome.members;
|
2016-09-18 20:35:23 +01:00
|
|
|
|
license = licenses.gpl2;
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|