nixpkgs/pkgs/desktops/gnome-3/core/gnome-contacts/default.nix

66 lines
2 KiB
Nix
Raw Normal View History

{ stdenv, gettext, fetchurl, evolution-data-server, fetchpatch
, 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, libhandy, gsettings-desktop-schemas }:
2018-03-05 01:49:34 +00:00
let
2019-09-02 16:44:42 +00:00
version = "3.34";
2018-03-05 01:49:34 +00:00
in stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "gnome-contacts";
inherit version;
src = fetchurl {
2019-08-13 21:52:01 +00:00
url = "mirror://gnome/sources/gnome-contacts/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2019-09-02 16:44:42 +00:00
sha256 = "04igc9xvyc4kb5xf5g2missnvyvj9zv5cqxf5k4z7hb0sv42wq4r";
};
2018-03-05 01:49:34 +00:00
propagatedUserEnvPkgs = [ evolution-data-server ];
2018-03-05 01:49:34 +00:00
nativeBuildInputs = [
meson ninja pkgconfig vala gettext libxslt docbook_xsl docbook_xml_dtd_42 python3 wrapGAppsHook
2018-03-05 01:49:34 +00:00
];
2018-03-05 01:49:34 +00:00
buildInputs = [
gtk3 glib evolution-data-server gsettings-desktop-schemas
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
];
mesonFlags = [
"-Dtelepathy=true"
];
patches = [
];
2018-03-05 01:49:34 +00:00
postPatch = ''
chmod +x build-aux/meson_post_install.py
patchShebangs build-aux/meson_post_install.py
'';
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>
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~
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;
2018-03-05 01:49:34 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "gnome-contacts";
attrPath = "gnome3.gnome-contacts";
};
};
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Contacts;
2018-03-05 01:49:34 +00:00
description = "GNOMEs integrated address book";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}