nixpkgs/pkgs/development/libraries/libxkbcommon/default.nix
Carles Pagès 22f4b5c637 Add libxkbcommon 0.2.0.
This is needed as a dependency for the Weston compositor.
2012-12-02 12:21:02 +01:00

22 lines
519 B
Nix

{ stdenv, fetchurl, yacc, flex, xkeyboard_config }:
stdenv.mkDerivation rec {
name = "libxkbcommon-0.2.0";
src = fetchurl {
url = "http://xkbcommon.org/download/${name}.tar.bz2";
sha256 = "0hpvfa8p4bhvhc1gcb578m354p5idd192xb8zlaq16d33h90msvl";
};
buildInputs = [ yacc flex xkeyboard_config ];
configureFlags = ''
--with-xkb-config-root=${xkeyboard_config}/etc/X11/xkb
'';
meta = {
description = "A library to handle keyboard descriptions";
homepage = http://xkbcommon.org;
};
}