pantheon.elementary-tasks: 6.3.0 -> 6.3.1

https://github.com/elementary/tasks/releases/tag/6.3.1

Changed files
+17 -10
nixos
modules
services
x11
desktop-managers
pkgs
desktops
pantheon
apps
elementary-tasks
+1 -1
nixos/modules/services/x11/desktop-managers/pantheon.nix
···
elementary-music
elementary-photos
elementary-screenshot
-
# elementary-tasks
+
elementary-tasks
elementary-terminal
elementary-videos
epiphany
+16 -9
pkgs/desktops/pantheon/apps/elementary-tasks/default.nix
···
{ lib
, stdenv
, fetchFromGitHub
+
, fetchpatch
, nix-update-script
, meson
, ninja
···
, evolution-data-server
, granite
, geoclue2
-
, geocode-glib
+
, geocode-glib_2
, gtk3
-
, libchamplain
-
, libgdata
+
, libchamplain_libsoup3
, libgee
, libhandy
, libical
···
stdenv.mkDerivation rec {
pname = "elementary-tasks";
-
version = "6.3.0";
+
version = "6.3.1";
src = fetchFromGitHub {
owner = "elementary";
repo = "tasks";
rev = version;
-
sha256 = "sha256-kW36bKA0uzW98Xl2bjbTkcfLm4SeQR8VB2FyKOqfPnM=";
+
sha256 = "sha256-b8KUlfpZxRFDiBjgrV/4XicCcEw2fWaN78NaOq6jQBk=";
};
+
patches = [
+
# Port to libsoup 3
+
# https://github.com/elementary/tasks/pull/345
+
(fetchpatch {
+
url = "https://github.com/elementary/tasks/commit/22e0d18693932e9eea3d2a22329f845575ce26e6.patch";
+
sha256 = "sha256-nLJlKf4L7G12ZnCo4wezyMRyeAf+Tf0OGHyT8I1ZuDA=";
+
})
+
];
+
nativeBuildInputs = [
meson
ninja
···
evolution-data-server
granite
geoclue2
-
geocode-glib
+
geocode-glib_2
gtk3
-
libchamplain
-
libgdata
+
libchamplain_libsoup3
libgee
libhandy
libical
···
platforms = platforms.linux;
maintainers = teams.pantheon.members;
mainProgram = "io.elementary.tasks";
-
broken = true; # https://github.com/elementary/tasks/issues/340
};
}