mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pantheon.wingpanel-indicator-datetime: support libecal-2.0
https://github.com/elementary/wingpanel-indicator-datetime/pull/202 💖️
This commit is contained in:
parent
3ccbce4b12
commit
7e06a3c256
1 changed files with 9 additions and 16 deletions
|
@ -16,23 +16,8 @@
|
|||
, libxml2
|
||||
, libsoup
|
||||
, elementary-calendar
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
let
|
||||
|
||||
# Terrible workaround https://github.com/elementary/wingpanel-indicator-datetime/issues/122
|
||||
# Evolution Data Server functionality will be broken (events from calendar in indicator)
|
||||
# but at least we don't fail to build.
|
||||
old-evolution-data-server = evolution-data-server.overrideAttrs(old: {
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/evolution-data-server/${stdenv.lib.versions.majorMinor "3.32.4"}/${old.pname}-3.32.4.tar.xz";
|
||||
sha256 = "0zsc9xwy6ixk3x0dx69ax5isrdw8qxjdxg2i5fr95s40nss7rxl3";
|
||||
};
|
||||
});
|
||||
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wingpanel-indicator-datetime";
|
||||
version = "2.2.1";
|
||||
|
@ -60,7 +45,7 @@ stdenv.mkDerivation rec {
|
|||
];
|
||||
|
||||
buildInputs = [
|
||||
old-evolution-data-server
|
||||
evolution-data-server
|
||||
granite
|
||||
gtk3
|
||||
libgee
|
||||
|
@ -69,6 +54,14 @@ stdenv.mkDerivation rec {
|
|||
wingpanel
|
||||
];
|
||||
|
||||
patches = [
|
||||
# Add support for libecal-2.0
|
||||
(fetchpatch {
|
||||
url = "https://github.com/elementary/wingpanel-indicator-datetime/commit/3ccd05d611e6dd5274a03f061ba1b5e13d6fe0cf.patch";
|
||||
sha256 = "011q9b4pjmk4fpq5zscl5r8m4n3jiyx464023h4j7zf8r1070jz6";
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
chmod +x meson/post_install.py
|
||||
patchShebangs meson/post_install.py
|
||||
|
|
Loading…
Reference in a new issue