2021-01-11 07:54:33 +00:00
|
|
|
|
{ lib, stdenv
|
2020-04-20 16:03:42 +01:00
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
2021-01-17 02:09:27 +00:00
|
|
|
|
, pkg-config
|
2020-04-20 16:03:42 +01:00
|
|
|
|
, desktop-file-utils
|
|
|
|
|
, python3
|
|
|
|
|
, vala
|
|
|
|
|
, wrapGAppsHook
|
2020-02-03 18:14:53 +00:00
|
|
|
|
, evolution-data-server
|
|
|
|
|
, libical
|
|
|
|
|
, libgee
|
|
|
|
|
, json-glib
|
|
|
|
|
, glib
|
2021-04-13 15:49:31 +01:00
|
|
|
|
, glib-networking
|
2020-02-03 18:14:53 +00:00
|
|
|
|
, sqlite
|
|
|
|
|
, libsoup
|
2021-04-28 03:07:39 +01:00
|
|
|
|
, libgdata
|
2020-02-03 18:14:53 +00:00
|
|
|
|
, gtk3
|
|
|
|
|
, pantheon /* granite, icons, maintainers */
|
|
|
|
|
, webkitgtk
|
2021-04-13 15:49:31 +01:00
|
|
|
|
, libpeas
|
2021-08-22 16:12:17 +01:00
|
|
|
|
, libhandy
|
|
|
|
|
, curl
|
2020-02-03 18:14:53 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "elementary-planner";
|
2021-08-22 16:12:17 +01:00
|
|
|
|
version = "2.7";
|
2020-02-03 18:14:53 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "alainm23";
|
|
|
|
|
repo = "planner";
|
|
|
|
|
rev = version;
|
2021-08-22 16:12:17 +01:00
|
|
|
|
sha256 = "sha256-3eFPGRcZWhzFYi52TbHmpFNLI0pWYcHbbBI7efqZwYE=";
|
2020-02-03 18:14:53 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
desktop-file-utils
|
|
|
|
|
meson
|
|
|
|
|
ninja
|
2021-01-17 02:09:27 +00:00
|
|
|
|
pkg-config
|
2020-02-03 18:14:53 +00:00
|
|
|
|
python3
|
|
|
|
|
vala
|
|
|
|
|
wrapGAppsHook
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
|
evolution-data-server
|
|
|
|
|
glib
|
2021-04-13 15:49:31 +01:00
|
|
|
|
glib-networking
|
2020-02-03 18:14:53 +00:00
|
|
|
|
gtk3
|
2020-04-01 06:07:50 +01:00
|
|
|
|
json-glib
|
|
|
|
|
libgee
|
|
|
|
|
libical
|
2021-04-13 15:49:31 +01:00
|
|
|
|
libpeas
|
2020-04-01 06:07:50 +01:00
|
|
|
|
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
|
2021-08-22 16:12:17 +01:00
|
|
|
|
libhandy
|
|
|
|
|
curl
|
2020-02-03 18:14:53 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
postPatch = ''
|
2022-03-18 01:54:54 +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"'
|
|
|
|
|
|
2022-03-17 08:31:40 +00:00
|
|
|
|
# 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-02-03 18:14:53 +00:00
|
|
|
|
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+=(
|
2022-03-18 01:54:54 +00:00
|
|
|
|
# The GTK theme is hardcoded.
|
2020-04-20 16:03:42 +01:00
|
|
|
|
--prefix XDG_DATA_DIRS : "${pantheon.elementary-gtk-theme}/share"
|
2022-03-18 01:55:41 +00:00
|
|
|
|
# The icon theme is hardcoded.
|
|
|
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
|
2020-04-20 16:03:42 +01:00
|
|
|
|
)
|
|
|
|
|
'';
|
|
|
|
|
|
2021-04-13 15:49:31 +01:00
|
|
|
|
postFixup = ''
|
|
|
|
|
ln -s $out/bin/com.github.alainm23.planner $out/bin/planner
|
|
|
|
|
'';
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with 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;
|
2021-09-18 16:00:51 +01:00
|
|
|
|
maintainers = with maintainers; [ dtzWill ] ++ teams.pantheon.members;
|
2021-11-03 10:27:38 +00:00
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
mainProgram = "com.github.alainm23.planner";
|
2020-02-03 18:14:53 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|