summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-06-28 11:56:01 +0800
committerBobby Rong <rjl931189261@126.com>2023-06-29 17:53:42 +0800
commit7572bbce6021eaa389960e2b016ad29e2a89ba03 (patch)
treeba5f6ae4449e875d6349056ff5b6ab9a86081d16
parenta50aa29609b16183ec48d0ae9b4554016952c5fd (diff)
downloadnixpkgs-7572bbce6021eaa389960e2b016ad29e2a89ba03.tar
nixpkgs-7572bbce6021eaa389960e2b016ad29e2a89ba03.tar.gz
nixpkgs-7572bbce6021eaa389960e2b016ad29e2a89ba03.tar.bz2
nixpkgs-7572bbce6021eaa389960e2b016ad29e2a89ba03.tar.lz
nixpkgs-7572bbce6021eaa389960e2b016ad29e2a89ba03.tar.xz
nixpkgs-7572bbce6021eaa389960e2b016ad29e2a89ba03.tar.zst
nixpkgs-7572bbce6021eaa389960e2b016ad29e2a89ba03.zip
pantheon.elementary-notifications: Backport full markup support patch
Needed for wingpanel-indicator-notifications 7.0.0.
-rw-r--r--pkgs/desktops/pantheon/services/elementary-notifications/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/desktops/pantheon/services/elementary-notifications/default.nix b/pkgs/desktops/pantheon/services/elementary-notifications/default.nix
index abff47fbd8b..5588bd93374 100644
--- a/pkgs/desktops/pantheon/services/elementary-notifications/default.nix
+++ b/pkgs/desktops/pantheon/services/elementary-notifications/default.nix
@@ -1,6 +1,7 @@
 { lib
 , stdenv
 , fetchFromGitHub
+, fetchpatch
 , nix-update-script
 , meson
 , ninja
@@ -27,6 +28,16 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-B1wo1N4heG872klFJOBKOEds0+6aqtvkTGefi97bdU8=";
   };
 
+  patches = [
+    # Backports https://github.com/elementary/notifications/pull/184
+    # Needed for https://github.com/elementary/wingpanel-indicator-notifications/pull/252
+    # Should be part of next bump
+    (fetchpatch {
+      url = "https://github.com/elementary/notifications/commit/bd159979dbe3dbe6f3f1da7acd8e0721cc20ef80.patch";
+      sha256 = "sha256-cOfeXwoMVgvbA29axyN7HtYKTgCtGxAPrB2PA/x8RKY=";
+    })
+  ];
+
   nativeBuildInputs = [
     glib # for glib-compile-schemas
     meson