lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 28 lines 860 B view raw
1{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, libxfce4ui, xfce4-panel 2, garcon, gtk, libxklavier, librsvg, libwnck 3}: 4 5with stdenv.lib; 6stdenv.mkDerivation rec { 7 p_name = "xfce4-xkb-plugin"; 8 ver_maj = "0.7"; 9 ver_min = "1"; 10 11 name = "${p_name}-${ver_maj}.${ver_min}"; 12 13 src = fetchurl { 14 url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"; 15 sha256 = "10g65j5ia389ahhn3b9hr52ghpp0817fk0m60rfrv4wrzqrjxzk1"; 16 }; 17 18 nativeBuildInputs = [ pkgconfig ]; 19 buildInputs = [ intltool libxfce4util libxfce4ui xfce4-panel garcon 20 gtk libxklavier librsvg libwnck ]; 21 22 meta = { 23 homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; 24 description = "Allows you to setup and use multiple keyboard layouts"; 25 platforms = platforms.linux; 26 maintainers = [ maintainers.AndersonTorres ]; 27 }; 28}