summary refs log tree commit diff
path: root/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin/default.nix
blob: f24a38c82a3a736f330134c78a90df13a75cade1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ 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 = "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 = [ ];
  };
}