1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

texlive.bin: fix darwin build

This commit is contained in:
Jonathan Ringer 2019-12-04 09:26:39 -08:00
parent dcf9a77568
commit cbbad0d899

View file

@ -178,7 +178,7 @@ core = stdenv.mkDerivation rec {
'' + cleanBrokenLinks;
# needed for poppler and xpdf
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11";
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++14";
setupHook = ./setup-hook.sh; # TODO: maybe texmf-nix -> texmf (and all references)
passthru = { inherit version buildInputs; };