nixpkgs/pkgs/desktops/gnome/core/gnome-contacts/default.nix
2024-05-02 09:05:49 +02:00

80 lines
1.4 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib
, stdenv
, gettext
, fetchurl
, evolution-data-server-gtk4
, pkg-config
, libxslt
, docbook-xsl-nons
, docbook_xml_dtd_42
, desktop-file-utils
, gtk4
, glib
, libportal-gtk4
, gnome-online-accounts
, qrencode
, wrapGAppsHook4
, folks
, libxml2
, gnome
, vala
, meson
, ninja
, libadwaita
, gsettings-desktop-schemas
}:
stdenv.mkDerivation rec {
pname = "gnome-contacts";
version = "46.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-contacts/${lib.versions.major version}/${pname}-${version}.tar.xz";
hash = "sha256-cK606DWhx3+bzH5XotzCN22TvbYXVxYYJXRF9WxjcN8=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
vala
gettext
libxslt
docbook-xsl-nons
docbook_xml_dtd_42
desktop-file-utils
wrapGAppsHook4
];
buildInputs = [
gtk4
glib
libportal-gtk4
evolution-data-server-gtk4
gsettings-desktop-schemas
folks
libadwaita
libxml2
gnome-online-accounts
qrencode
];
doCheck = true;
passthru = {
updateScript = gnome.updateScript {
packageName = "gnome-contacts";
attrPath = "gnome.gnome-contacts";
};
};
meta = with lib; {
homepage = "https://apps.gnome.org/Contacts/";
description = "GNOMEs integrated address book";
mainProgram = "gnome-contacts";
maintainers = teams.gnome.members;
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}