Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

84 lines
1.5 KiB
Nix
Raw Permalink 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,
gst_all_1,
pipewire,
}:
stdenv.mkDerivation rec {
pname = "gnome-contacts";
version = "48.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-contacts/${lib.versions.major version}/gnome-contacts-${version}.tar.xz";
hash = "sha256-onYplbWUJ+w/GF8otVlONwd7cqcM18GSF+1jRjfswbU=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
vala
gettext
libxslt
docbook-xsl-nons
docbook_xml_dtd_42
desktop-file-utils
wrapGAppsHook4
];
buildInputs = [
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-rs # GTK4 sink & paintable
pipewire # pipewiresrc
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"; };
};
meta = with lib; {
homepage = "https://apps.gnome.org/Contacts/";
description = "GNOMEs integrated address book";
mainProgram = "gnome-contacts";
teams = [ teams.gnome ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}