2014-07-06 17:13:18 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, xkeyboard_config, libxml2, xorg
|
|
|
|
, glib, isocodes, gobjectIntrospection }:
|
2008-02-18 20:53:36 +00:00
|
|
|
|
2014-03-13 22:12:30 +00:00
|
|
|
let
|
|
|
|
version = "5.3";
|
|
|
|
in
|
2008-02-18 20:53:36 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-03-13 22:12:30 +00:00
|
|
|
name = "libxklavier-${version}";
|
2008-02-18 20:53:36 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-03-13 22:12:30 +00:00
|
|
|
url = "mirror://gnome/sources/libxklavier/${version}/${name}.tar.xz";
|
|
|
|
sha256 = "016lpdv35z0qsw1cprdc2k5qzkdi5waj6qmr0a2q6ljn9g2kpv7b";
|
2008-02-18 20:53:36 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" "docdev" ];
|
2015-10-11 20:34:42 +01:00
|
|
|
|
2010-07-28 16:35:01 +01:00
|
|
|
# TODO: enable xmodmap support, needs xmodmap DB
|
2014-07-06 17:13:18 +01:00
|
|
|
propagatedBuildInputs = with xorg; [ libX11 libXi xkeyboard_config libxml2 libICE glib libxkbfile isocodes ];
|
2011-06-07 22:51:07 +01:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-06-07 22:51:07 +01:00
|
|
|
|
2014-04-07 17:35:02 +01:00
|
|
|
buildInputs = [ gobjectIntrospection ];
|
|
|
|
|
2014-07-06 17:13:18 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-xkb-base=${xkeyboard_config}/etc/X11/xkb"
|
|
|
|
"--with-xkb-bin-base=${xorg.xkbcomp}/bin"
|
|
|
|
"--disable-xmodmap-support"
|
|
|
|
];
|
2008-02-18 20:53:36 +00:00
|
|
|
|
2014-07-06 17:13:18 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library providing high-level API for X Keyboard Extension known as XKB";
|
2008-02-18 20:53:36 +00:00
|
|
|
homepage = http://freedesktop.org/wiki/Software/LibXklavier;
|
2014-07-06 17:13:18 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.linux;
|
2008-02-18 20:53:36 +00:00
|
|
|
};
|
|
|
|
}
|
2014-07-06 17:13:18 +01:00
|
|
|
|