depot/third_party/nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

37 lines
580 B
Nix

{ lib
, mkXfceDerivation
, gtk3
, librsvg
, libwnck3
, libxklavier
, garcon
, libxfce4ui
, libxfce4util
, xfce4-panel
, xfconf
}:
mkXfceDerivation {
category = "panel-plugins";
pname = "xfce4-xkb-plugin";
version = "0.8.2";
rev-prefix = "";
sha256 = "xmCoNMxykeaThYEJo6BcbraFo9CruFZL6YPjovzb6hg=";
buildInputs = [
garcon
gtk3
librsvg
libxfce4ui
libxfce4util
libxklavier
libwnck3
xfce4-panel
xfconf
];
meta = with lib; {
description = "Allows you to setup and use multiple keyboard layouts";
maintainers = [ ];
};
}