From d9f318abd0f3dabd13f829c23c339bac8e2cd60a Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Tue, 31 Dec 2024 22:21:10 +0800 Subject: [PATCH] xfce.xfconf: Explicitly add perl This builds because xfce.xfce4-dev-tools propagates intltool, which propagates perl. But since Xfce is actively getting rid of intltool let's get ready for it. --- pkgs/desktops/xfce/core/xfconf/default.nix | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/xfce/core/xfconf/default.nix b/pkgs/desktops/xfce/core/xfconf/default.nix index 82a33a4b458e..8ca8990c17b7 100644 --- a/pkgs/desktops/xfce/core/xfconf/default.nix +++ b/pkgs/desktops/xfce/core/xfconf/default.nix @@ -1,8 +1,11 @@ -{ lib -, mkXfceDerivation -, libxfce4util -, gobject-introspection -, vala +{ + lib, + mkXfceDerivation, + gobject-introspection, + perl, + vala, + libxfce4util, + glib, }: mkXfceDerivation { @@ -12,10 +15,16 @@ mkXfceDerivation { sha256 = "sha256-U+Sk7ubBr1ZD1GLQXlxrx0NQdhV/WpVBbnLcc94Tjcw="; - nativeBuildInputs = [ gobject-introspection vala ]; + nativeBuildInputs = [ + gobject-introspection + perl + vala + ]; buildInputs = [ libxfce4util ]; + propagatedBuildInputs = [ glib ]; + meta = with lib; { description = "Simple client-server configuration storage and query system for Xfce"; mainProgram = "xfconf-query";