2021-12-06 16:07:01 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, fetchFromGitHub
|
2020-08-20 17:08:02 +00:00
|
|
|
, nix-update-script
|
2021-09-22 15:38:15 +00:00
|
|
|
, appstream
|
|
|
|
, desktop-file-utils
|
2020-04-24 23:36:52 +00:00
|
|
|
, meson
|
|
|
|
, ninja
|
2021-09-22 15:38:15 +00:00
|
|
|
, pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
, python3
|
2021-09-22 15:38:15 +00:00
|
|
|
, vala
|
|
|
|
, wrapGAppsHook
|
|
|
|
, clutter-gtk
|
|
|
|
, elementary-icon-theme
|
|
|
|
, evolution-data-server
|
2020-04-24 23:36:52 +00:00
|
|
|
, granite
|
2021-09-22 15:38:15 +00:00
|
|
|
, geoclue2
|
|
|
|
, geocode-glib
|
|
|
|
, gtk3
|
|
|
|
, libchamplain
|
|
|
|
, libgdata
|
2020-04-24 23:36:52 +00:00
|
|
|
, libgee
|
2021-09-22 15:38:15 +00:00
|
|
|
, libhandy
|
|
|
|
, libical
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-09-22 15:38:15 +00:00
|
|
|
pname = "elementary-tasks";
|
2021-12-19 01:06:50 +00:00
|
|
|
version = "6.1.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elementary";
|
2021-12-19 01:06:50 +00:00
|
|
|
repo = "tasks";
|
2020-04-24 23:36:52 +00:00
|
|
|
rev = version;
|
2021-12-19 01:06:50 +00:00
|
|
|
sha256 = "sha256-Gt9Hp9m28QdAFnKIT1xcbiSM5cn6kW7wEXmi/iFfu8k=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-09-22 15:38:15 +00:00
|
|
|
appstream
|
2020-04-24 23:36:52 +00:00
|
|
|
desktop-file-utils
|
|
|
|
meson
|
|
|
|
ninja
|
2021-02-05 17:12:51 +00:00
|
|
|
pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
python3
|
|
|
|
vala
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2021-09-22 15:38:15 +00:00
|
|
|
clutter-gtk
|
2020-04-24 23:36:52 +00:00
|
|
|
elementary-icon-theme
|
2021-09-22 15:38:15 +00:00
|
|
|
evolution-data-server
|
2020-04-24 23:36:52 +00:00
|
|
|
granite
|
2021-09-22 15:38:15 +00:00
|
|
|
geoclue2
|
|
|
|
geocode-glib
|
2020-04-24 23:36:52 +00:00
|
|
|
gtk3
|
2021-09-22 15:38:15 +00:00
|
|
|
libchamplain
|
|
|
|
libgdata
|
2020-04-24 23:36:52 +00:00
|
|
|
libgee
|
2021-09-22 15:38:15 +00:00
|
|
|
libhandy
|
|
|
|
libical
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
'';
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = nix-update-script {
|
|
|
|
attrPath = "pantheon.${pname}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2021-09-22 15:38:15 +00:00
|
|
|
homepage = "https://github.com/elementary/tasks";
|
|
|
|
description = "Synced tasks and reminders on elementary OS";
|
|
|
|
license = licenses.gpl3Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.linux;
|
2021-09-22 15:38:15 +00:00
|
|
|
maintainers = teams.pantheon.members;
|
2021-12-06 16:07:01 +00:00
|
|
|
mainProgram = "io.elementary.tasks";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|