2018-08-20 21:31:18 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson
|
|
|
|
, ninja, vala, desktop-file-utils, gtk3, granite, libgee
|
|
|
|
, geoclue2, libchamplain, clutter, folks, geocode-glib, python3
|
|
|
|
, libnotify, libical, evolution-data-server, appstream-glib
|
2019-06-11 07:26:53 +01:00
|
|
|
, elementary-icon-theme, wrapGAppsHook }:
|
2018-08-20 21:31:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-05 23:41:32 +01:00
|
|
|
pname = "elementary-calendar";
|
2019-03-04 18:28:18 +00:00
|
|
|
version = "5.0";
|
2018-08-20 21:31:18 +01:00
|
|
|
|
2019-08-05 23:41:32 +01:00
|
|
|
repoName = "calendar";
|
2018-08-20 21:31:18 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elementary";
|
2019-08-05 23:41:32 +01:00
|
|
|
repo = repoName;
|
2018-08-20 21:31:18 +01:00
|
|
|
rev = version;
|
2019-03-04 18:28:18 +00:00
|
|
|
sha256 = "0yiis5ig98gjw4s2qh8lppkdmv1cgi6qchxqncsjdki7yxyyni35";
|
2018-08-20 21:31:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = pantheon.updateScript {
|
2019-08-05 23:41:32 +01:00
|
|
|
inherit repoName;
|
|
|
|
attrPath = pname;
|
2018-08-20 21:31:18 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
appstream-glib
|
|
|
|
desktop-file-utils
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
python3
|
|
|
|
vala
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
clutter
|
|
|
|
elementary-icon-theme
|
|
|
|
evolution-data-server
|
|
|
|
folks
|
|
|
|
geoclue2
|
|
|
|
geocode-glib
|
|
|
|
granite
|
|
|
|
gtk3
|
|
|
|
libchamplain
|
|
|
|
libgee
|
|
|
|
libical
|
|
|
|
libnotify
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Desktop calendar app designed for elementary OS";
|
|
|
|
homepage = https://github.com/elementary/calendar;
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = pantheon.maintainers;
|
|
|
|
};
|
|
|
|
}
|