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
70 lines
1.1 KiB
Nix
70 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
vala,
|
|
wrapGAppsHook3,
|
|
clutter-gtk,
|
|
evolution-data-server,
|
|
granite,
|
|
geoclue2,
|
|
geocode-glib_2,
|
|
gtk3,
|
|
libchamplain_libsoup3,
|
|
libgee,
|
|
libhandy,
|
|
libical,
|
|
libportal-gtk3,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elementary-tasks";
|
|
version = "6.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = "tasks";
|
|
rev = version;
|
|
hash = "sha256-xOMS4Zwfl7TLHvm8Zn6wQ4ZoMg+Yuci+cTpUVG+liss=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
clutter-gtk
|
|
evolution-data-server
|
|
granite
|
|
geoclue2
|
|
geocode-glib_2
|
|
gtk3
|
|
libchamplain_libsoup3
|
|
libgee
|
|
libhandy
|
|
libical
|
|
libportal-gtk3
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/elementary/tasks";
|
|
description = "Synced tasks and reminders on elementary OS";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
teams = [ teams.pantheon ];
|
|
mainProgram = "io.elementary.tasks";
|
|
};
|
|
}
|