pantheon.elementary-tasks: 6.3.1 -> 6.3.2

https://github.com/elementary/tasks/releases/tag/6.3.2
This commit is contained in:
Bobby Rong 2023-07-25 10:27:17 +08:00
parent 208aa1b096
commit 1ad62e1b31
No known key found for this signature in database

View file

@ -1,7 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, nix-update-script
, meson
, ninja
@ -19,28 +18,20 @@
, libgee
, libhandy
, libical
, libportal-gtk3
}:
stdenv.mkDerivation rec {
pname = "elementary-tasks";
version = "6.3.1";
version = "6.3.2";
src = fetchFromGitHub {
owner = "elementary";
repo = "tasks";
rev = version;
sha256 = "sha256-b8KUlfpZxRFDiBjgrV/4XicCcEw2fWaN78NaOq6jQBk=";
sha256 = "sha256-6Vwx+NRVGDqZzN5IVk4cQxGjSkYwrrNhUVoB8TRo28U=";
};
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
@ -61,6 +52,7 @@ stdenv.mkDerivation rec {
libgee
libhandy
libical
libportal-gtk3
];
postPatch = ''