26 lines
769 B
Nix
26 lines
769 B
Nix
|
{ lib, mkXfceDerivation, gobject-introspection, vala, gtk3, libICE, libSM
|
||
|
, libstartup_notification, libgtop, libepoxy, libxfce4util, xfconf }:
|
||
|
|
||
|
mkXfceDerivation {
|
||
|
category = "xfce";
|
||
|
pname = "libxfce4ui";
|
||
|
version = "4.18.6";
|
||
|
|
||
|
sha256 = "sha256-ojmI745tKLHv26uL1qS/v6hAcLmAV/WF2NAtAhQRUkg=";
|
||
|
|
||
|
nativeBuildInputs = [ gobject-introspection vala ];
|
||
|
buildInputs = [ gtk3 libstartup_notification libgtop libepoxy xfconf ];
|
||
|
propagatedBuildInputs = [ libxfce4util libICE libSM ];
|
||
|
|
||
|
configureFlags = [
|
||
|
"--with-vendor-info=NixOS"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Widgets library for Xfce";
|
||
|
mainProgram = "xfce4-about";
|
||
|
license = with licenses; [ lgpl2Plus lgpl21Plus ];
|
||
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
||
|
};
|
||
|
}
|