Unverified Commit 402f4327 authored by Bobby Rong's avatar Bobby Rong Committed by GitHub
Browse files

Xfce updates 2024-12-31 (#369692)

parents a2787118 19a2e438
Loading
Loading
Loading
Loading
+12 −3
Original line number Diff line number Diff line
{ lib, mkXfceDerivation, docbook_xsl, glib, libxslt, gtk3
, libxfce4ui, libxfce4util, perl }:
{
  lib,
  mkXfceDerivation,
  docbook_xsl,
  glib,
  libxslt,
  gtk3,
  libxfce4ui,
  libxfce4util,
  perl,
}:

mkXfceDerivation {
  category = "xfce";
@@ -11,6 +20,7 @@ mkXfceDerivation {
  nativeBuildInputs = [
    libxslt
    docbook_xsl
    perl
  ];

  buildInputs = [
@@ -18,7 +28,6 @@ mkXfceDerivation {
    glib
    libxfce4ui
    libxfce4util
    (perl.withPackages(ps: with ps; [ URI ])) # for $out/lib/xfce4/exo/exo-compose-mail
  ];

  meta = with lib; {
+2 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  mkXfceDerivation,
  lib,
  gobject-introspection,
  perl,
  vala,
  libICE,
  libSM,
@@ -23,6 +24,7 @@ mkXfceDerivation {

  nativeBuildInputs = [
    gobject-introspection
    perl
    vala
  ];

+2 −2
Original line number Diff line number Diff line
@@ -23,9 +23,9 @@
let unwrapped = mkXfceDerivation {
  category = "xfce";
  pname = "thunar";
  version = "4.20.0";
  version = "4.20.1";

  sha256 = "sha256-TCroFesFD0IKGdfuootd1BwEsWVECE2XQfUovJqPEh0=";
  sha256 = "sha256-+Iz9tkP8foEtor1HFBB1/fyMXdLm3mXCoP9j9bug8po=";

  nativeBuildInputs = [
    docbook_xsl
+2 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
, libxfce4ui
, libxfce4util
, libxfce4windowing
, perl
, tzdata
, vala
, wayland
@@ -26,6 +27,7 @@ mkXfceDerivation {

  nativeBuildInputs = [
    gobject-introspection
    perl
    vala
  ];

+15 −6
Original line number Diff line number Diff line
{ 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";
Loading