nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin/default.nix

38 lines
585 B
Nix
Raw Normal View History

2021-01-31 04:38:28 +00:00
{ lib
, mkXfceDerivation
, gtk3
, librsvg
2021-06-23 18:22:04 +00:00
, libwnck
2021-01-31 04:38:28 +00:00
, libxklavier
, garcon
, libxfce4ui
, libxfce4util
, xfce4-panel
, xfconf
}:
mkXfceDerivation {
category = "panel-plugins";
pname = "xfce4-xkb-plugin";
2021-01-31 04:38:28 +00:00
version = "0.8.2";
rev-prefix = "";
sha256 = "sha256-xmCoNMxykeaThYEJo6BcbraFo9CruFZL6YPjovzb6hg=";
2021-01-31 04:38:28 +00:00
buildInputs = [
garcon
gtk3
librsvg
libxfce4ui
libxfce4util
libxklavier
2021-06-23 18:22:04 +00:00
libwnck
2021-01-31 04:38:28 +00:00
xfce4-panel
xfconf
];
meta = with lib; {
description = "Allows you to setup and use multiple keyboard layouts";
2021-01-31 04:38:28 +00:00
maintainers = [ ];
};
}