a17216af4c
Make either 'bin' or 'out' the first output.
32 lines
894 B
Nix
32 lines
894 B
Nix
{ stdenv, fetchurl, pkgconfig, yacc, flex, xkeyboard_config, libxcb, libX11 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libxkbcommon-0.6.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://xkbcommon.org/download/${name}.tar.xz";
|
|
sha256 = "0q47xa1szlxwgvwmhv4b7xwawnykz1hnc431d84nj8dlh2q8f22v";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
buildInputs = [ pkgconfig yacc flex xkeyboard_config libxcb ];
|
|
|
|
configureFlags = [
|
|
"--with-xkb-config-root=${xkeyboard_config}/etc/X11/xkb"
|
|
"--with-x-locale-root=${libX11.out}/share/X11/locale"
|
|
];
|
|
|
|
preBuild = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
sed -i 's/,--version-script=.*$//' Makefile
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A library to handle keyboard descriptions";
|
|
homepage = http://xkbcommon.org;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ garbas ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|