2020-04-20 16:03:42 +01:00
|
|
|
|
{ stdenv
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
|
|
|
|
, pkgconfig
|
|
|
|
|
, desktop-file-utils
|
|
|
|
|
, python3
|
|
|
|
|
, vala
|
|
|
|
|
, wrapGAppsHook
|
2020-02-03 18:14:53 +00:00
|
|
|
|
, evolution-data-server
|
|
|
|
|
, libical
|
|
|
|
|
, libgee
|
|
|
|
|
, json-glib
|
|
|
|
|
, glib
|
|
|
|
|
, sqlite
|
|
|
|
|
, libsoup
|
|
|
|
|
, gtk3
|
|
|
|
|
, pantheon /* granite, icons, maintainers */
|
|
|
|
|
, webkitgtk
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "elementary-planner";
|
2020-08-01 03:16:05 +01:00
|
|
|
|
version = "2.4.6";
|
2020-02-03 18:14:53 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "alainm23";
|
|
|
|
|
repo = "planner";
|
|
|
|
|
rev = version;
|
2020-08-01 03:16:05 +01:00
|
|
|
|
sha256 = "0z0997yq809wbsk3w21xv4fcrgqcb958qdlksf4rhzhfnwbiii6y";
|
2020-02-03 18:14:53 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
desktop-file-utils
|
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
pkgconfig
|
|
|
|
|
python3
|
|
|
|
|
vala
|
|
|
|
|
wrapGAppsHook
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
|
evolution-data-server
|
|
|
|
|
glib
|
|
|
|
|
gtk3
|
2020-04-01 06:07:50 +01:00
|
|
|
|
json-glib
|
|
|
|
|
libgee
|
|
|
|
|
libical
|
|
|
|
|
libsoup
|
|
|
|
|
pantheon.elementary-icon-theme
|
2020-02-03 18:14:53 +00:00
|
|
|
|
pantheon.granite
|
2020-04-01 06:07:50 +01:00
|
|
|
|
sqlite
|
2020-02-03 18:14:53 +00:00
|
|
|
|
webkitgtk
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
|
chmod +x build-aux/meson/post_install.py
|
|
|
|
|
patchShebangs build-aux/meson/post_install.py
|
|
|
|
|
'';
|
|
|
|
|
|
2020-04-20 16:03:42 +01:00
|
|
|
|
preFixup = ''
|
|
|
|
|
gappsWrapperArgs+=(
|
|
|
|
|
# the theme is hardcoded
|
|
|
|
|
--prefix XDG_DATA_DIRS : "${pantheon.elementary-gtk-theme}/share"
|
|
|
|
|
)
|
|
|
|
|
'';
|
|
|
|
|
|
2020-02-03 18:14:53 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-20 16:03:42 +01:00
|
|
|
|
description = "Task manager with Todoist support designed for GNU/Linux 🚀️";
|
2020-02-03 18:14:53 +00:00
|
|
|
|
homepage = "https://planner-todo.web.app";
|
|
|
|
|
license = licenses.gpl3;
|
|
|
|
|
maintainers = with maintainers; [ dtzWill ] ++ pantheon.maintainers;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|