Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
25 lines
769 B
Nix
25 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;
|
|
};
|
|
}
|