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:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user