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
|
|
|
|
|
, wrapGAppsHook, folks, libxml2, gnome3, telepathy-glib
|
2019-04-17 01:38:26 +01:00
|
|
|
|
, vala, meson, ninja, libhandy, gsettings-desktop-schemas }:
|
2018-03-05 01:49:34 +00:00
|
|
|
|
|
|
|
|
|
let
|
2019-05-04 00:22:50 +01:00
|
|
|
|
version = "3.32.1";
|
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";
|
2019-05-04 00:22:50 +01:00
|
|
|
|
sha256 = "17g1gh8yj58cfpdx69h2szivlbjgvv982kmhnkkh0i5bwj0zs2yy";
|
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
|
2019-03-03 18:22:49 +00:00
|
|
|
|
folks gnome-desktop telepathy-glib 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 = [
|
|
|
|
|
"-Dtelepathy=true"
|
|
|
|
|
];
|
|
|
|
|
|
2019-07-04 13:02:10 +01:00
|
|
|
|
patches = [
|
|
|
|
|
# Fixes build with libhandy >= 0.0.10
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gnome-contacts/commit/c5eee38cd2556403a640a0a4c11d36cbf9a5a798.patch";
|
|
|
|
|
sha256 = "0s2cl7z6b0x3ky4y28yyxc9x5zp4r3vqmvbhz5m2fm6830fyjg13";
|
|
|
|
|
})
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gnome-contacts/commit/1f1500ca01098ffda6392f5ec9ce3a29a48a84b1.patch";
|
|
|
|
|
sha256 = "082zaaj2l5cgr2qy145x8yknja87r0vpigrhidal40041kd5nldg";
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
|
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; {
|
|
|
|
|
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;
|
|
|
|
|
};
|
|
|
|
|
}
|