2018-03-05 01:49:34 +00:00
|
|
|
|
{ stdenv, gettext, fetchurl, evolution-data-server
|
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
|
|
|
|
|
, wrapGAppsHook, folks, libxml2, gnome3, telepathy-glib
|
|
|
|
|
, vala, meson, ninja }:
|
|
|
|
|
|
|
|
|
|
let
|
2018-05-08 01:37:17 +01:00
|
|
|
|
version = "3.28.2";
|
2018-03-05 01:49:34 +00:00
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
name = "gnome-contacts-${version}";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-05 01:12:11 +01:00
|
|
|
|
url = "mirror://gnome/sources/gnome-contacts/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2018-05-08 01:37:17 +01:00
|
|
|
|
sha256 = "1ilgmvgprn1slzmrzbs0zwgbzxp04rn5ycqd9c8zfvyh6zzwwr8w";
|
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 = [
|
|
|
|
|
gtk3 glib evolution-data-server gnome3.gsettings-desktop-schemas
|
|
|
|
|
folks gnome-desktop telepathy-glib
|
|
|
|
|
libxml2 gnome-online-accounts cheese
|
|
|
|
|
gnome3.defaultIconTheme libchamplain clutter-gtk geocode-glib
|
|
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
2018-03-05 01:49:34 +00:00
|
|
|
|
postPatch = ''
|
|
|
|
|
chmod +x meson_post_install.py
|
|
|
|
|
patchShebangs 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; {
|
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Contacts;
|
2018-03-05 01:49:34 +00:00
|
|
|
|
description = "GNOME’s integrated address book";
|
2016-09-18 20:35:23 +01:00
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
|
license = licenses.gpl2;
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|