mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
2e4f06c4d2
This is needed for the libical 2.0 compat that landed in master [0] [0]: https://github.com/elementary/calendar/issues/404
86 lines
1.5 KiB
Nix
86 lines
1.5 KiB
Nix
{ 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
|
|
, elementary-icon-theme
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elementary-calendar";
|
|
version = "unstable-2019-09-17";
|
|
|
|
repoName = "calendar";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = repoName;
|
|
rev = "46346e48b53e9d3d59d9f567b622532338f50f32"; # needed for libical 2.0 compat
|
|
sha256 = "04xzczcj5rbzqlhmf175d8p0wzw01s4658v5jllrp8nchmndb986";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = pantheon.updateScript {
|
|
inherit repoName;
|
|
attrPath = pname;
|
|
versionPolicy = "master";
|
|
};
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|