47a8b15664
Motivation: Stop programs from having to declare transitive dependencies (fixed in this commit).
Per https://gitlab.gnome.org/GNOME/evolution-data-server/-/merge_requests/57/diffs, evolution-data-server requires libgdata for gobject introspection.
See also 025960d229
, which did a similar thing for libsoup.
92 lines
1.6 KiB
Nix
92 lines
1.6 KiB
Nix
{ lib, stdenv
|
||
, fetchFromGitHub
|
||
, meson
|
||
, ninja
|
||
, pkg-config
|
||
, desktop-file-utils
|
||
, python3
|
||
, vala
|
||
, wrapGAppsHook
|
||
, evolution-data-server
|
||
, libical
|
||
, libgee
|
||
, json-glib
|
||
, glib
|
||
, glib-networking
|
||
, sqlite
|
||
, libsoup
|
||
, libgdata
|
||
, gtk3
|
||
, pantheon /* granite, icons, maintainers */
|
||
, webkitgtk
|
||
, libpeas
|
||
, libhandy
|
||
, curl
|
||
}:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "elementary-planner";
|
||
version = "2.7";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "alainm23";
|
||
repo = "planner";
|
||
rev = version;
|
||
sha256 = "sha256-3eFPGRcZWhzFYi52TbHmpFNLI0pWYcHbbBI7efqZwYE=";
|
||
};
|
||
|
||
nativeBuildInputs = [
|
||
desktop-file-utils
|
||
meson
|
||
ninja
|
||
pkg-config
|
||
python3
|
||
vala
|
||
wrapGAppsHook
|
||
];
|
||
|
||
buildInputs = [
|
||
evolution-data-server
|
||
glib
|
||
glib-networking
|
||
gtk3
|
||
json-glib
|
||
libgee
|
||
libical
|
||
libpeas
|
||
libsoup
|
||
pantheon.elementary-icon-theme
|
||
pantheon.granite
|
||
sqlite
|
||
webkitgtk
|
||
libhandy
|
||
curl
|
||
];
|
||
|
||
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"
|
||
)
|
||
'';
|
||
|
||
postFixup = ''
|
||
ln -s $out/bin/com.github.alainm23.planner $out/bin/planner
|
||
'';
|
||
|
||
meta = with lib; {
|
||
description = "Task manager with Todoist support designed for GNU/Linux 🚀️";
|
||
homepage = "https://planner-todo.web.app";
|
||
license = licenses.gpl3;
|
||
maintainers = with maintainers; [ dtzWill ] ++ teams.pantheon.members;
|
||
platforms = platforms.linux;
|
||
mainProgram = "com.github.alainm23.planner";
|
||
};
|
||
}
|
||
|