planify: unstable-2023-04-20 -> 4.1

https://github.com/alainm23/planify/compare/97c0f1c30d087e2a...4.1
This commit is contained in:
Bobby Rong 2023-06-24 10:36:59 +08:00
parent b721d27214
commit da1b5e43ef
No known key found for this signature in database

View File

@ -5,7 +5,6 @@
, meson , meson
, ninja , ninja
, pkg-config , pkg-config
, python3
, vala , vala
, wrapGAppsHook4 , wrapGAppsHook4
, evolution-data-server , evolution-data-server
@ -16,6 +15,7 @@
, libadwaita , libadwaita
, libgee , libgee
, libical , libical
, libportal-gtk4
, pantheon , pantheon
, sqlite , sqlite
, webkitgtk_6_0 , webkitgtk_6_0
@ -23,13 +23,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "planify"; pname = "planify";
version = "unstable-2023-04-20"; version = "4.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "alainm23"; owner = "alainm23";
repo = "planify"; repo = "planify";
rev = "97c0f1c30d087e2ac459241bfdb9b606a12a77ce"; rev = version;
sha256 = "sha256-W4Hfa9zgKpGKfd7QSTLF2FT0vSJ5mQMV+W9WWltZlL4="; sha256 = "sha256-H8TPuqKRwbcB+2NTC5ZIK7y6uiYbTT4svtx21FbTzME=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -37,7 +37,6 @@ stdenv.mkDerivation rec {
meson meson
ninja ninja
pkg-config pkg-config
python3
vala vala
wrapGAppsHook4 wrapGAppsHook4
]; ];
@ -51,28 +50,18 @@ stdenv.mkDerivation rec {
libadwaita libadwaita
libgee libgee
libical libical
libportal-gtk4
pantheon.granite7 pantheon.granite7
sqlite sqlite
webkitgtk_6_0 webkitgtk_6_0
]; ];
mesonFlags = [
"-Dproduction=true"
];
postPatch = ''
chmod +x build-aux/meson/post_install.py
patchShebangs build-aux/meson/post_install.py
substituteInPlace build-aux/meson/post_install.py \
--replace "gtk-update-icon-cache" "gtk4-update-icon-cache"
'';
meta = with lib; { meta = with lib; {
description = "Task manager with Todoist support designed for GNU/Linux"; description = "Task manager with Todoist support designed for GNU/Linux";
homepage = "https://github.com/alainm23/planify"; homepage = "https://github.com/alainm23/planify";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ dtzWill ] ++ teams.pantheon.members; maintainers = with maintainers; [ dtzWill ] ++ teams.pantheon.members;
platforms = platforms.linux; platforms = platforms.linux;
mainProgram = "com.github.alainm23.task-planner"; mainProgram = "io.github.alainm23.planify";
}; };
} }