about summary refs log tree commit diff
path: root/pkgs/desktops/xfce4-13/libxfce4util/default.nix
blob: 6a3b633cd09db4a980ff2b85f94cca9c72116a80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, mkXfceDerivation, gobject-introspection }:

mkXfceDerivation rec {
  category = "xfce";
  pname = "libxfce4util";
  version = "4.13.2";

  sha256 = "0sb6pzhmh0qzfdhixj1ard56zi68318k86z3a1h3f2fhqy7gyf98";

  buildInputs = [ gobject-introspection ];

  meta = with lib; {
    description = "Extension library for Xfce";
    license = licenses.lgpl2Plus;
  };
}