lol
0
fork

Configure Feed

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

at v192 21 lines 532 B view raw
1{ stdenv, fetchurl, pkgconfig, yacc, flex, xkeyboard_config, libxcb }: 2 3stdenv.mkDerivation rec { 4 name = "libxkbcommon-0.5.0"; 5 6 src = fetchurl { 7 url = "http://xkbcommon.org/download/${name}.tar.xz"; 8 sha1 = "z9dvxrkcyb4b7f2zybgkrqb9zcxrj9vi"; 9 }; 10 11 buildInputs = [ pkgconfig yacc flex xkeyboard_config libxcb ]; 12 13 configureFlags = '' 14 --with-xkb-config-root=${xkeyboard_config}/etc/X11/xkb 15 ''; 16 17 meta = { 18 description = "A library to handle keyboard descriptions"; 19 homepage = http://xkbcommon.org; 20 }; 21}