5d853f7dca
Here is a list: Battery (1.0.5) Clipman (1.2.6) Cpufreq (1.0.0) Cpugraph (1.0.5) Datetime (0.6.2) Dict (0.3.0) Embed (1.4.1) Eyes (4.4.3) Fsguard (1.0.1) Genmon (3.4.0) Netload (1.2.4) Notes (1.7.7) Systemload (1.1.2) Verve (1.0.0) Xkb (0.5.6)
27 lines
815 B
Nix
27 lines
815 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, libxfce4ui, xfce4panel
|
|
, gtk, libxklavier, librsvg, libwnck
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
p_name = "xfce4-xkb-plugin";
|
|
ver_maj = "0.5";
|
|
ver_min = "6";
|
|
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "198q6flrajbscwwywqq8yv6hdcwifahhj9i526vyfz4q6cq65r09";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel gtk
|
|
libxklavier librsvg libwnck ];
|
|
|
|
meta = {
|
|
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
|
|
description = "Allows you to setup and use multiple keyboard layouts";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
};
|
|
}
|