nixpkgs/pkgs/desktops/xfce4-13/libxfce4util/default.nix

17 lines
364 B
Nix
Raw Normal View History

2017-12-17 16:02:52 +01:00
{ lib, mkXfceDerivation, gobjectIntrospection }:
mkXfceDerivation rec {
category = "xfce";
pname = "libxfce4util";
version = "4.13.2";
2017-12-17 16:02:52 +01:00
sha256 = "0sb6pzhmh0qzfdhixj1ard56zi68318k86z3a1h3f2fhqy7gyf98";
2017-12-17 16:02:52 +01:00
buildInputs = [ gobjectIntrospection ];
meta = with lib; {
description = "Extension library for Xfce";
license = licenses.lgpl2Plus;
};
}