mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
freetype: attempt to fix build for the other FreeBSD
This commit is contained in:
parent
5980282d17
commit
10d7190f2a
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||
CFLAGS = stdenv.lib.optionalString stdenv.isArm "-std=gnu99";
|
||||
|
||||
# FreeType requires GNU Make, which is not part of stdenv on FreeBSD.
|
||||
buildInputs = stdenv.lib.optional (stdenv.system == "i686-freebsd") gnumake;
|
||||
buildInputs = stdenv.lib.optional (!stdenv.isLinux) gnumake;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue