nixpkgs/pkgs/desktops/xfce4-14/libxfce4ui/default.nix

24 lines
619 B
Nix
Raw Normal View History

{ lib, mkXfceDerivation, gobject-introspection, gtk2, gtk3, libICE, libSM
2019-08-17 22:36:42 +00:00
, libstartup_notification, libxfce4util, xfconf }:
2017-12-17 15:02:52 +00:00
2019-08-13 21:52:01 +00:00
mkXfceDerivation {
2017-12-17 15:02:52 +00:00
category = "xfce";
pname = "libxfce4ui";
2019-08-12 10:38:41 +00:00
version = "4.14.1";
2017-12-17 15:02:52 +00:00
2019-08-12 10:38:41 +00:00
sha256 = "0fnncf30s51qhgixn57z4d021pjjhzgsg2x69w4dy68vff2347qy";
2017-12-17 15:02:52 +00:00
nativeBuildInputs = [ gobject-introspection ];
buildInputs = [ gtk2 gtk3 libstartup_notification xfconf ];
propagatedBuildInputs = [ libxfce4util libICE libSM ];
2017-12-17 15:02:52 +00:00
2019-08-17 20:49:20 +00:00
configureFlags = [
"--with-vendor-info='NixOS'"
];
2017-12-17 15:02:52 +00:00
meta = with lib; {
description = "Widgets library for Xfce";
license = licenses.lgpl2Plus;
};
}