From dab5aedbc6ce6261daef1d1eca1af7c95f3170de Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Wed, 16 Oct 2024 12:14:36 +0000 Subject: [PATCH] xfce.libxfce4ui: 4.18.6 -> 4.20.0 https://gitlab.xfce.org/xfce/libxfce4ui/-/compare/libxfce4ui-4.18.6...libxfce4ui-4.20.0 --- .../desktops/xfce/core/libxfce4ui/default.nix | 48 +++++++++++++++---- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/xfce/core/libxfce4ui/default.nix b/pkgs/desktops/xfce/core/libxfce4ui/default.nix index 862d4f8cbc94..780c3ca990f8 100644 --- a/pkgs/desktops/xfce/core/libxfce4ui/default.nix +++ b/pkgs/desktops/xfce/core/libxfce4ui/default.nix @@ -1,16 +1,45 @@ -{ lib, mkXfceDerivation, gobject-introspection, vala, gtk3, libICE, libSM -, libstartup_notification, libgtop, libepoxy, libxfce4util, xfconf }: +{ + mkXfceDerivation, + lib, + gobject-introspection, + vala, + libICE, + libSM, + libepoxy, + libgtop, + libgudev, + libstartup_notification, + xfconf, + gtk3, + libxfce4util, +}: mkXfceDerivation { category = "xfce"; pname = "libxfce4ui"; - version = "4.18.6"; + version = "4.20.0"; - sha256 = "sha256-ojmI745tKLHv26uL1qS/v6hAcLmAV/WF2NAtAhQRUkg="; + sha256 = "sha256-M+OapPHQ/WxlkUzHPx+ELstVyGoZanCxCL0N8hDWSN8="; - nativeBuildInputs = [ gobject-introspection vala ]; - buildInputs = [ gtk3 libstartup_notification libgtop libepoxy xfconf ]; - propagatedBuildInputs = [ libxfce4util libICE libSM ]; + nativeBuildInputs = [ + gobject-introspection + vala + ]; + + buildInputs = [ + libICE + libSM + libepoxy + libgtop + libgudev + libstartup_notification + xfconf + ]; + + propagatedBuildInputs = [ + gtk3 + libxfce4util + ]; configureFlags = [ "--with-vendor-info=NixOS" @@ -19,7 +48,10 @@ mkXfceDerivation { meta = with lib; { description = "Widgets library for Xfce"; mainProgram = "xfce4-about"; - license = with licenses; [ lgpl2Plus lgpl21Plus ]; + license = with licenses; [ + lgpl2Plus + lgpl21Plus + ]; maintainers = with maintainers; [ ] ++ teams.xfce.members; }; }