mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
libxkbcommon: fix build on darwin with upstream patch
This commit is contained in:
parent
3b24d6e187
commit
ecfb397e8a
1 changed files with 7 additions and 5 deletions
|
@ -20,11 +20,13 @@ stdenv.mkDerivation rec {
|
|||
"-Dx-locale-root=${libX11.out}/share/X11/locale"
|
||||
];
|
||||
|
||||
# Remove example program which fail on Darwin
|
||||
postPatch = if stdenv.isDarwin then ''
|
||||
substituteInPlace meson.build \
|
||||
--replace "executable('rmlvo-to-keymap', 'test/rmlvo-to-keymap.c', dependencies: test_dep)" ""
|
||||
'' else null;
|
||||
patches = stdenv.lib.optionals stdenv.isDarwin [
|
||||
# Fix build on darwin
|
||||
(fetchpatch {
|
||||
url = "https://github.com/xkbcommon/libxkbcommon/commit/32d178b50fe0da05e51e4fe8903c84371d133331.patch";
|
||||
sha256 = "1wqdjla8hmgdqr8xc2manw363sxrqqsn3s8bd397h3cd7fj3hh1v";
|
||||
})
|
||||
];
|
||||
|
||||
doCheck = false; # fails, needs unicode locale
|
||||
|
||||
|
|
Loading…
Reference in a new issue