nixpkgs-suyu/pkgs/desktops/xfce/core/xfconf/default.nix

18 lines
414 B
Nix
Raw Normal View History

2020-12-28 22:17:57 +01:00
{ mkXfceDerivation, libxfce4util, gobject-introspection, vala }:
2017-12-17 16:02:52 +01:00
2019-08-13 23:52:01 +02:00
mkXfceDerivation {
2017-12-17 16:02:52 +01:00
category = "xfce";
pname = "xfconf";
2020-12-28 22:17:57 +01:00
version = "4.16.0";
2017-12-17 16:02:52 +01:00
sha256 = "sha256-w8wnHFj1KBX6lCnGbVLgWPEo2ul4SwfemUYVHioTlwE=";
2020-12-28 22:17:57 +01:00
nativeBuildInputs = [ gobject-introspection vala ];
2017-12-17 16:02:52 +01:00
buildInputs = [ libxfce4util ];
meta = {
description = "Simple client-server configuration storage and query system for Xfce";
};
2017-12-17 16:02:52 +01:00
}