2021-01-15 22:18:51 +00:00
|
|
|
|
{ lib, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
2021-02-05 17:12:51 +00:00
|
|
|
|
, pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, desktop-file-utils
|
|
|
|
|
, python3
|
|
|
|
|
, vala
|
|
|
|
|
, wrapGAppsHook
|
|
|
|
|
, evolution-data-server
|
|
|
|
|
, libical
|
|
|
|
|
, libgee
|
|
|
|
|
, json-glib
|
|
|
|
|
, glib
|
2021-04-22 02:08:21 +00:00
|
|
|
|
, glib-networking
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, sqlite
|
|
|
|
|
, libsoup
|
2021-05-20 23:08:51 +00:00
|
|
|
|
, libgdata
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, gtk3
|
|
|
|
|
, pantheon /* granite, icons, maintainers */
|
|
|
|
|
, webkitgtk
|
2021-04-22 02:08:21 +00:00
|
|
|
|
, libpeas
|
2021-08-23 08:02:39 +00:00
|
|
|
|
, libhandy
|
|
|
|
|
, curl
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "elementary-planner";
|
2021-08-23 08:02:39 +00:00
|
|
|
|
version = "2.7";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "alainm23";
|
|
|
|
|
repo = "planner";
|
|
|
|
|
rev = version;
|
2021-08-23 08:02:39 +00:00
|
|
|
|
sha256 = "sha256-3eFPGRcZWhzFYi52TbHmpFNLI0pWYcHbbBI7efqZwYE=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
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 = [
|
|
|
|
|
evolution-data-server
|
|
|
|
|
glib
|
2021-04-22 02:08:21 +00:00
|
|
|
|
glib-networking
|
2020-04-24 23:36:52 +00:00
|
|
|
|
gtk3
|
|
|
|
|
json-glib
|
|
|
|
|
libgee
|
|
|
|
|
libical
|
2021-04-22 02:08:21 +00:00
|
|
|
|
libpeas
|
2020-04-24 23:36:52 +00:00
|
|
|
|
libsoup
|
|
|
|
|
pantheon.elementary-icon-theme
|
|
|
|
|
pantheon.granite
|
|
|
|
|
sqlite
|
|
|
|
|
webkitgtk
|
2021-08-23 08:02:39 +00:00
|
|
|
|
libhandy
|
|
|
|
|
curl
|
2020-04-24 23:36:52 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
postPatch = ''
|
2022-03-30 09:31:56 +00:00
|
|
|
|
# The GTK theme has been renamed in elementary OS 6
|
|
|
|
|
# https://github.com/elementary/flatpak-platform/blob/6.1.0/io.elementary.Sdk.json#L182
|
|
|
|
|
# Remove this in https://github.com/NixOS/nixpkgs/pull/159249
|
|
|
|
|
substituteInPlace src/Application.vala \
|
|
|
|
|
--replace '"gtk-theme-name", "elementary"' '"gtk-theme-name", "io.elementary.stylesheet.blueberry"'
|
|
|
|
|
|
|
|
|
|
# Fix build with vala 0.56
|
|
|
|
|
# https://github.com/alainm23/planner/pull/884
|
|
|
|
|
substituteInPlace src/Application.vala \
|
|
|
|
|
--replace "public const OptionEntry[] PLANNER_OPTIONS" "private const OptionEntry[] PLANNER_OPTIONS"
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
chmod +x build-aux/meson/post_install.py
|
|
|
|
|
patchShebangs build-aux/meson/post_install.py
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
|
gappsWrapperArgs+=(
|
2022-03-30 09:31:56 +00:00
|
|
|
|
# The GTK theme is hardcoded.
|
2020-04-24 23:36:52 +00:00
|
|
|
|
--prefix XDG_DATA_DIRS : "${pantheon.elementary-gtk-theme}/share"
|
2022-03-30 09:31:56 +00:00
|
|
|
|
# The icon theme is hardcoded.
|
|
|
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
)
|
|
|
|
|
'';
|
|
|
|
|
|
2021-04-22 02:08:21 +00:00
|
|
|
|
postFixup = ''
|
|
|
|
|
ln -s $out/bin/com.github.alainm23.planner $out/bin/planner
|
|
|
|
|
'';
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "Task manager with Todoist support designed for GNU/Linux 🚀️";
|
|
|
|
|
homepage = "https://planner-todo.web.app";
|
|
|
|
|
license = licenses.gpl3;
|
2021-09-22 15:38:15 +00:00
|
|
|
|
maintainers = with maintainers; [ dtzWill ] ++ teams.pantheon.members;
|
2021-12-06 16:07:01 +00:00
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
mainProgram = "com.github.alainm23.planner";
|
2022-10-21 18:38:19 +00:00
|
|
|
|
broken = true; # https://github.com/alainm23/planner/issues/928
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|