Unverified Commit ce2d5c05 authored by Bobby Rong's avatar Bobby Rong
Browse files
parent 5b194796
Loading
Loading
Loading
Loading
+15 −6
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  stdenv,
  mkXfceDerivation,
  lib,
  python3,
  vala,
  glib,
  withIntrospection ?
@@ -14,11 +15,15 @@
mkXfceDerivation {
  category = "xfce";
  pname = "libxfce4util";
  version = "4.20.0";
  version = "4.20.1";

  sha256 = "sha256-0qbJSCXHsVz3XILHICFhciyz92LgMZiR7XFLAESHRGQ=";
  sha256 = "sha256-QlT5ev4NhjR/apbgYQsjrweJ2IqLySozLYLzCAnmkfM=";

  nativeBuildInputs = lib.optionals withIntrospection [
  nativeBuildInputs =
    [
      python3
    ]
    ++ lib.optionals withIntrospection [
      gobject-introspection
      vala # vala bindings require GObject introspection
    ];
@@ -27,6 +32,10 @@ mkXfceDerivation {
    glib
  ];

  postPatch = ''
    patchShebangs xdt-gen-visibility
  '';

  meta = with lib; {
    description = "Extension library for Xfce";
    mainProgram = "xfce4-kiosk-query";