aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/libgaminggear/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libgaminggear/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/libgaminggear/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libgaminggear/default.nix b/nixpkgs/pkgs/development/libraries/libgaminggear/default.nix
index 1b528b98e85..c0aa67238bf 100644
--- a/nixpkgs/pkgs/development/libraries/libgaminggear/default.nix
+++ b/nixpkgs/pkgs/development/libraries/libgaminggear/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl, cmake, pkgconfig, gettext
, gtk2, libcanberra, libnotify, pcre, sqlite, xorg
+, harfbuzz
}:
stdenv.mkDerivation rec {
@@ -27,6 +28,9 @@ stdenv.mkDerivation rec {
"-DINSTALL_LIBDIR=lib"
];
+ # https://sourceforge.net/p/libgaminggear/discussion/general/thread/b43a776b3a/
+ NIX_CFLAGS_COMPILE = [ "-I${harfbuzz.dev}/include/harfbuzz" ];
+
postFixup = ''
moveToOutput bin "$bin"
'';