about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/xfce/core/libxfce4windowing/default.nix
blob: 6395497fccdaebec832bfde172d3420ae5148577 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, mkXfceDerivation, gobject-introspection, glib, gtk3, libwnck, wayland }:

mkXfceDerivation {
  category = "xfce";
  pname = "libxfce4windowing";
  version = "4.19.2";

  sha256 = "sha256-mXxxyfwZB/AJFVVGFAAXLqC5p7pZAeqmhljQym55hyM=";

  nativeBuildInputs = [ gobject-introspection ];
  buildInputs = [ glib gtk3 libwnck wayland ];

  meta = {
    description = "Windowing concept abstraction library for X11 and Wayland";
    license = lib.licenses.lgpl21Plus;
    maintainers = with lib; [ maintainers.federicoschonborn ] ++ teams.xfce.members;
  };
}