Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
864 B
Nix
45 lines
864 B
Nix
{
|
|
stdenv,
|
|
mkXfceDerivation,
|
|
lib,
|
|
python3,
|
|
vala,
|
|
glib,
|
|
withIntrospection ?
|
|
lib.meta.availableOn stdenv.hostPlatform gobject-introspection
|
|
&& stdenv.hostPlatform.emulatorAvailable buildPackages,
|
|
buildPackages,
|
|
gobject-introspection,
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "libxfce4util";
|
|
version = "4.20.1";
|
|
|
|
sha256 = "sha256-QlT5ev4NhjR/apbgYQsjrweJ2IqLySozLYLzCAnmkfM=";
|
|
|
|
nativeBuildInputs = [
|
|
python3
|
|
]
|
|
++ lib.optionals withIntrospection [
|
|
gobject-introspection
|
|
vala # vala bindings require GObject introspection
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
glib
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs xdt-gen-visibility
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Extension library for Xfce";
|
|
mainProgram = "xfce4-kiosk-query";
|
|
license = licenses.lgpl2Plus;
|
|
teams = [ teams.xfce ];
|
|
};
|
|
}
|