summary refs log tree commit diff
path: root/pkgs/desktops/xfce4-13/libxfce4ui/default.nix
blob: 63df0b7cc9adc7a424e116de2bff5f9eebaedfab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
  };
}