3
0
Fork 0
forked from mirrors/nixpkgs

harfbuzz needs libintl on non glibc platforms

This commit is contained in:
Sander van der Burg 2013-06-18 10:36:28 +02:00
parent 4ecbe3bf5d
commit 23f43527e1

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, glib, freetype }:
{ stdenv, fetchurl, pkgconfig, glib, freetype, gettext }:
stdenv.mkDerivation rec {
name = "harfbuzz-0.9.12";
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "19cx5y2m20rp7z5j7mwqfb4ph2g8lrri69zim44x362y4w5gfly6";
};
buildInputs = [ pkgconfig glib freetype ];
buildInputs = [ pkgconfig glib freetype ] ++ stdenv.lib.optional (!stdenv.isLinux) gettext;
meta = {
description = "An OpenType text shaping engine";