about summary refs log tree commit diff
path: root/pkgs/desktops/mate
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2024-02-16 01:35:40 +0000
committerBobby Rong <rjl931189261@126.com>2024-03-14 20:31:09 +0800
commit1d5c2c780fdff226853e27490c068c572374a054 (patch)
tree9334ff7ba51612d98aece9e3c719564d641c7f60 /pkgs/desktops/mate
parent54dae297d165ee23fbd25d5662eca6e6ac8053d7 (diff)
downloadnixlib-1d5c2c780fdff226853e27490c068c572374a054.tar
nixlib-1d5c2c780fdff226853e27490c068c572374a054.tar.gz
nixlib-1d5c2c780fdff226853e27490c068c572374a054.tar.bz2
nixlib-1d5c2c780fdff226853e27490c068c572374a054.tar.lz
nixlib-1d5c2c780fdff226853e27490c068c572374a054.tar.xz
nixlib-1d5c2c780fdff226853e27490c068c572374a054.tar.zst
nixlib-1d5c2c780fdff226853e27490c068c572374a054.zip
mate.mate-notification-daemon: 1.26.1 -> 1.28.0
https://github.com/mate-desktop/mate-notification-daemon/compare/v1.26.1...v1.28.0

Also enables wayland support.
Diffstat (limited to 'pkgs/desktops/mate')
-rw-r--r--pkgs/desktops/mate/mate-notification-daemon/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/desktops/mate/mate-notification-daemon/default.nix b/pkgs/desktops/mate/mate-notification-daemon/default.nix
index 7569a676db11..ca1fa2e17289 100644
--- a/pkgs/desktops/mate/mate-notification-daemon/default.nix
+++ b/pkgs/desktops/mate/mate-notification-daemon/default.nix
@@ -7,6 +7,7 @@
 , libcanberra-gtk3
 , libnotify
 , libwnck
+, gtk-layer-shell
 , gtk3
 , libxml2
 , mate-desktop
@@ -17,11 +18,11 @@
 
 stdenv.mkDerivation rec {
   pname = "mate-notification-daemon";
-  version = "1.26.1";
+  version = "1.28.0";
 
   src = fetchurl {
     url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
-    sha256 = "Dq6SlsSKPHH9VvGTGWH5LSnkWgRf5fGgX4PHQAwxmSQ=";
+    sha256 = "pDEDSOrYZsvLm0xGP00mXMapahp4KpQRoIsjvWXbsuA=";
   };
 
   nativeBuildInputs = [
@@ -35,11 +36,14 @@ stdenv.mkDerivation rec {
     libcanberra-gtk3
     libnotify
     libwnck
+    gtk-layer-shell
     gtk3
     mate-desktop
     mate-panel
   ];
 
+  configureFlags = [ "--enable-in-process" ];
+
   env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
 
   enableParallelBuilding = true;