nixpkgs/pkgs/desktops/xfce4-13/libxfce4ui/default.nix
Yegor Timoshenko 21159d8f17
xfce4-13: init
2017-12-21 14:40:42 +00:00

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;
};
}