pantheon.elementary-notifications: 7.0.0 -> 7.0.1

https://github.com/elementary/notifications/releases/tag/7.0.1
This commit is contained in:
Bobby Rong 2023-08-22 11:42:42 +08:00
parent 3b4550a55a
commit 1d942ec8ea
No known key found for this signature in database

View File

@ -1,7 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, nix-update-script
, meson
, ninja
@ -13,36 +12,25 @@
, libgee
, libhandy
, libcanberra-gtk3
, python3
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "elementary-notifications";
version = "7.0.0";
version = "7.0.1";
src = fetchFromGitHub {
owner = "elementary";
repo = "notifications";
rev = version;
sha256 = "sha256-i7fSKnP4W12cfax5IXm/Zgy5vP5z7S43S80gvzWpFCE=";
sha256 = "sha256-of7Tw38yJAhHKICU3XxGwIOwqfUhrL7SGKqFd9Dps/I=";
};
patches = [
# Fix broken notification filter
# https://github.com/elementary/notifications/pull/207
(fetchpatch {
url = "https://github.com/elementary/notifications/commit/4691ec869316be94598d8e55e1cd3bd525e8e149.patch";
sha256 = "sha256-4x/Us92Mgws5v+ZQiKvjQ4ixfBnU8oTQ92rc+nf8Zdg=";
})
];
nativeBuildInputs = [
glib # for glib-compile-schemas
meson
ninja
pkg-config
python3
vala
wrapGAppsHook
];
@ -56,11 +44,6 @@ stdenv.mkDerivation rec {
libhandy
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
passthru = {
updateScript = nix-update-script { };
};