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
67 lines
1.1 KiB
Nix
67 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
mkXfceDerivation,
|
|
lib,
|
|
perl,
|
|
libICE,
|
|
libSM,
|
|
libepoxy,
|
|
libgtop,
|
|
libgudev,
|
|
libstartup_notification,
|
|
xfconf,
|
|
gtk3,
|
|
libxfce4util,
|
|
withIntrospection ?
|
|
lib.meta.availableOn stdenv.hostPlatform gobject-introspection
|
|
&& stdenv.hostPlatform.emulatorAvailable buildPackages,
|
|
buildPackages,
|
|
gobject-introspection,
|
|
vala,
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "libxfce4ui";
|
|
version = "4.20.2";
|
|
|
|
sha256 = "sha256-NsTrJ2271v8vMMyiEef+4Rs0KBOkSkKPjfoJdgQU0ds=";
|
|
|
|
nativeBuildInputs = [
|
|
perl
|
|
]
|
|
++ lib.optionals withIntrospection [
|
|
gobject-introspection
|
|
vala # vala bindings require GObject introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
libICE
|
|
libSM
|
|
libepoxy
|
|
libgtop
|
|
libgudev
|
|
libstartup_notification
|
|
xfconf
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
gtk3
|
|
libxfce4util
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-vendor-info=NixOS"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Widgets library for Xfce";
|
|
mainProgram = "xfce4-about";
|
|
license = with licenses; [
|
|
lgpl2Plus
|
|
lgpl21Plus
|
|
];
|
|
teams = [ teams.xfce ];
|
|
};
|
|
}
|