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.
This commit is contained in:
Bobby Rong
2024-12-31 23:12:22 +08:00
parent a2ce386e3e
commit d9f318abd0
+15 -6
View File
@@ -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";