mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
harfbuzz needs libintl on non glibc platforms
This commit is contained in:
parent
4ecbe3bf5d
commit
23f43527e1
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, glib, freetype }:
|
{ stdenv, fetchurl, pkgconfig, glib, freetype, gettext }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "harfbuzz-0.9.12";
|
name = "harfbuzz-0.9.12";
|
||||||
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "19cx5y2m20rp7z5j7mwqfb4ph2g8lrri69zim44x362y4w5gfly6";
|
sha256 = "19cx5y2m20rp7z5j7mwqfb4ph2g8lrri69zim44x362y4w5gfly6";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig glib freetype ];
|
buildInputs = [ pkgconfig glib freetype ] ++ stdenv.lib.optional (!stdenv.isLinux) gettext;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "An OpenType text shaping engine";
|
description = "An OpenType text shaping engine";
|
||||||
|
Loading…
Reference in New Issue
Block a user