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

mkXfceDerivation rec {
  category = "xfce";
  pname = "libxfce4util";
  version = "4.14pre1";
  rev = "xfce-4.14pre1";

  sha256 = "13cqv4b34rmr9h7nr9gmk3x2mi2y0v91xzwrwhikd1lmz9ir5lkf";

  buildInputs = [ gobject-introspection ];

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