2016-06-19 15:15:33 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, yacc, flex, xkeyboard_config, libxcb, libX11 }:
|
2012-12-02 11:21:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-28 15:26:44 +00:00
|
|
|
name = "libxkbcommon-0.7.1";
|
2012-12-02 11:21:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-10-05 20:21:21 +01:00
|
|
|
url = "http://xkbcommon.org/download/${name}.tar.xz";
|
2017-02-28 15:26:44 +00:00
|
|
|
sha256 = "ba59305d2e19e47c27ea065c2e0df96ebac6a3c6e97e28ae5620073b6084e68b";
|
2012-12-02 11:21:02 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-07 20:47:56 +01:00
|
|
|
|
2014-08-03 15:33:19 +01:00
|
|
|
buildInputs = [ pkgconfig yacc flex xkeyboard_config libxcb ];
|
2012-12-02 11:21:02 +00:00
|
|
|
|
2016-06-19 15:15:33 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-xkb-config-root=${xkeyboard_config}/etc/X11/xkb"
|
|
|
|
"--with-x-locale-root=${libX11.out}/share/X11/locale"
|
|
|
|
];
|
2012-12-02 11:21:02 +00:00
|
|
|
|
2015-09-27 16:40:52 +01:00
|
|
|
preBuild = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
sed -i 's/,--version-script=.*$//' Makefile
|
|
|
|
'';
|
|
|
|
|
2016-05-15 05:17:52 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-12-02 11:21:02 +00:00
|
|
|
description = "A library to handle keyboard descriptions";
|
|
|
|
homepage = http://xkbcommon.org;
|
2016-05-15 05:17:52 +01:00
|
|
|
license = licenses.mit;
|
2017-02-28 15:26:56 +00:00
|
|
|
maintainers = with maintainers; [ garbas ttuegel ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2012-12-02 11:21:02 +00:00
|
|
|
};
|
|
|
|
}
|