18 lines
492 B
Nix
18 lines
492 B
Nix
{ lib, mkXfceDerivation, libxfce4util, gobject-introspection, vala }:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "xfconf";
|
|
version = "4.16.0";
|
|
|
|
sha256 = "sha256-w8wnHFj1KBX6lCnGbVLgWPEo2ul4SwfemUYVHioTlwE=";
|
|
|
|
nativeBuildInputs = [ gobject-introspection vala ];
|
|
|
|
buildInputs = [ libxfce4util ];
|
|
|
|
meta = with lib; {
|
|
description = "Simple client-server configuration storage and query system for Xfce";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|