summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-08-22 11:42:42 +0800
committerBobby Rong <rjl931189261@126.com>2023-08-22 11:46:08 +0800
commit1d942ec8eac20c01826c065dd503b8103005d286 (patch)
tree010a0c77b6717eb9cf63f7770f26679b321ca6db
parent3b4550a55a31f07912e5c43efe228e7f86e679d4 (diff)
downloadnixpkgs-1d942ec8eac20c01826c065dd503b8103005d286.tar
nixpkgs-1d942ec8eac20c01826c065dd503b8103005d286.tar.gz
nixpkgs-1d942ec8eac20c01826c065dd503b8103005d286.tar.bz2
nixpkgs-1d942ec8eac20c01826c065dd503b8103005d286.tar.lz
nixpkgs-1d942ec8eac20c01826c065dd503b8103005d286.tar.xz
nixpkgs-1d942ec8eac20c01826c065dd503b8103005d286.tar.zst
nixpkgs-1d942ec8eac20c01826c065dd503b8103005d286.zip
pantheon.elementary-notifications: 7.0.0 -> 7.0.1
https://github.com/elementary/notifications/releases/tag/7.0.1
-rw-r--r--pkgs/desktops/pantheon/services/elementary-notifications/default.nix21
1 files changed, 2 insertions, 19 deletions
diff --git a/pkgs/desktops/pantheon/services/elementary-notifications/default.nix b/pkgs/desktops/pantheon/services/elementary-notifications/default.nix
index 4f44b337fd1..475503bfe42 100644
--- a/pkgs/desktops/pantheon/services/elementary-notifications/default.nix
+++ b/pkgs/desktops/pantheon/services/elementary-notifications/default.nix
@@ -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 { };
   };