nixpkgs/pkgs/applications/office/elementary-planner/default.nix

77 lines
1.3 KiB
Nix
Raw Normal View History

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