about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/xfce4-14/libxfce4util/default.nix
blob: e6cafcac8bbf26264175fd5c521c02ddf808252d (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.14pre2";
  rev = "xfce-4.14pre2";

  sha256 = "0s1fh798v86ifg46qn3zaykpwidn23vpqbkxq1fcbxpxb6rpxxwk";

  buildInputs = [ gobject-introspection ];

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