mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
19 lines
513 B
Nix
19 lines
513 B
Nix
{ lib, mkXfceDerivation, gobjectIntrospection, gtk2, gtk3
|
|
, libstartup_notification ? null, libxfce4util, xfconf }:
|
|
|
|
mkXfceDerivation rec {
|
|
category = "xfce";
|
|
pname = "libxfce4ui";
|
|
version = "4.13.4";
|
|
|
|
sha256 = "0m9h3kvkk2nx8pxxmsg9sjnyp6ajwjrz9djjxxvranjsdw3ilydy";
|
|
|
|
buildInputs = [ gobjectIntrospection gtk2 gtk3 libstartup_notification xfconf ];
|
|
propagatedBuildInputs = [ libxfce4util ];
|
|
|
|
meta = with lib; {
|
|
description = "Widgets library for Xfce";
|
|
license = licenses.lgpl2Plus;
|
|
};
|
|
}
|