nixpkgs/pkgs/desktops/xfce/core/libxfce4ui/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
738 B
Nix
Raw Normal View History

2020-12-28 22:17:53 +01:00
{ lib, mkXfceDerivation, gobject-introspection, vala, gtk3, libICE, libSM
, libstartup_notification, libgtop, libepoxy, libxfce4util, xfconf }:
2017-12-17 16:02:52 +01:00
2019-08-13 23:52:01 +02:00
mkXfceDerivation {
2017-12-17 16:02:52 +01:00
category = "xfce";
pname = "libxfce4ui";
2021-10-10 22:49:40 +02:00
version = "4.16.1";
2017-12-17 16:02:52 +01:00
2021-10-10 22:49:40 +02:00
sha256 = "sha256-5mwyC3YA1LvdVSvaHN7CXDJh+IXjmdHGLKzhpjtUZkw=";
2017-12-17 16:02:52 +01:00
2020-12-28 22:17:53 +01:00
nativeBuildInputs = [ gobject-introspection vala ];
buildInputs = [ gtk3 libstartup_notification libgtop libepoxy xfconf ];
propagatedBuildInputs = [ libxfce4util libICE libSM ];
2017-12-17 16:02:52 +01:00
2019-08-17 22:49:20 +02:00
configureFlags = [
"--with-vendor-info='NixOS'"
];
2017-12-17 16:02:52 +01:00
meta = with lib; {
description = "Widgets library for Xfce";
2020-12-28 22:17:53 +01:00
license = with licenses; [ lgpl2Plus lgpl21Plus ];
2021-11-28 19:51:44 +01:00
maintainers = with maintainers; [ ] ++ teams.xfce.members;
2017-12-17 16:02:52 +01:00
};
}